Skip to main content
Question

Help with Prototype functionality

  • March 17, 2025
  • 1 reply
  • 18 views

emarissa44

Hello! I am trying to make a functional prototype by changing the path a user progresses to depending on which multiple choice option they select. The problem is, how do I make the function action on “continue” but check to see which option is selected to route them to the correct place? Example, on click of Continue, if user selected option 1, take them to page A. But if they click continue with option 2 selected, send them to page B. Thank you! 

 

This topic has been closed for replies.

1 reply

Raphael_M
  • Power Member
  • 396 replies
  • March 18, 2025

Create a number variable called indeterminate then set the value to 0.

 

Set the function of the continue button to conditional and add these onclick functions:

  1. if “indeterminate” = 1,  navigate to page 1
  2. if “indeterminate” = 2,  navigate to page 2
  3. if “indeterminate” = 3,  navigate to page 3

 

then set the function of the multiple choices:

  1. Option1: on click = set variable “indeterminate” to 1
  2. Option2: on click = set variable “indeterminate” to 2
  3. Option3: on click = set variable “indeterminate” to 3