Forum Discussion
Reviewing slide will not advance
I have created a presentation without a player, stakeholder wanted it that way. When I get to the final exam and go to review it, I get the first question but can't advance to the next. I think it has something to do with my added submit button I put in. Am I correct? How do I fix it?
When you use the built-in Player, Storyline knows what to do when reviewing a quiz. That includes adding the Prev and Next buttons.
Because you're not using the Player, you need to program the question slides to show custom Prev and Next buttons during a review.
To ensure they only show during a review, use a T/F variable to track whether or not the user is reviewing the quiz.
- For example, let's say False means taking/retrying the quiz (i.e., don't show Prev and Next), and True means reviewing (i.e., do show Prev and Next).
- On the Results slide, add a trigger to the Review Quiz button that sets the variable to True. Add a trigger to the Retry Quiz button that sets it to False. Be sure those triggers come before the triggers that jump to the quiz.
- On the question slides, add Prev and Next buttons with an Initial State of Hidden.
- Add triggers to change the buttons to Normal when the timeline starts with the condition that the variable = True. Use an Else statement that changes the buttons to Hidden.
- JudyNolletSuper Hero
When you use the built-in Player, Storyline knows what to do when reviewing a quiz. That includes adding the Prev and Next buttons.
Because you're not using the Player, you need to program the question slides to show custom Prev and Next buttons during a review.
To ensure they only show during a review, use a T/F variable to track whether or not the user is reviewing the quiz.
- For example, let's say False means taking/retrying the quiz (i.e., don't show Prev and Next), and True means reviewing (i.e., do show Prev and Next).
- On the Results slide, add a trigger to the Review Quiz button that sets the variable to True. Add a trigger to the Retry Quiz button that sets it to False. Be sure those triggers come before the triggers that jump to the quiz.
- On the question slides, add Prev and Next buttons with an Initial State of Hidden.
- Add triggers to change the buttons to Normal when the timeline starts with the condition that the variable = True. Use an Else statement that changes the buttons to Hidden.