Copy link to clipboard
Copied
I want my user to make a series of decisions, and then have those decisions displayed on a separate slide. The user is selecting which paragraph in a story is correct, at the end I want them to see the whole story and then show corrections.
Copy link to clipboard
Copied
How did you set up the selection of the paragraphs? Are they inserted in shapes set up as buttons to be clicked? The work flow will implement to have user variables to store the chosen paragraphs. Beware: the number of characters that can be stored in a variable is limited. Later on you can insert all those user variables in a text container to choose the result.
Copy link to clipboard
Copied
In modules that I have created with a similar need, I created variables to function as toggle switches for each choice that was made.
By default they were off. (value=0) If the user selected that item by clicking on it then (Assign var_xxxx with 1).
At the end, when I want them to display, I have an onEnter action to show those items with value of 1. (If var_xxxx=1, show choice1)
Similarly you could simply do the variable by slide and have the selection set the variable to 1, 2, or 3 and again show them at the end.
I am guessing there are multiple ways to do this and this is perhaps a bit vague at this point but hopefully it gives you a thought.
Greg