Exit Course After Results Review

May 13, 2021

Any suggestions on a trigger for moving to "exit course" slide only after reviewing the results of a quiz in Storyline. 

1 Reply
Judy Nollet

Hi, Beth,

Do you mean you want them to click the Review Quiz button on the Results slide and complete that review before they can continue to the slide after the Results slide? 

You could do that by disabling the Next button on the Results until the review is completed. 

  • Create a T/F variable to track whether the review is in progress. For this example, let's call it review_in_progress. Have the default value = False
  • Create a T/F variable to track whether the review has been completed. For this example, let's call it review_done.
  • Add a trigger to the Review Quiz button that adjusts the review_in_progress variable to True.
  • Add a trigger to the last question that adjusts the review_done variable to True with the condition that the review_in_progress variable = True. (The condition ensures this the variable will only change during the review, not during the test.)
  • Add a trigger to the Results slide that disables the Next button when the timeline starts with the condition that review_done = False.
  •  Add a trigger to the Results slide that enables the Next button when the timeline starts with the condition that review_done = True

Note: If you allow the user to retake the quiz, you'll have to add extra triggers to reset values in case they take the quiz, review the quiz, and retake the quiz. If you assume they'll retake the quiz until they pass (or you want to force them to do that), you could put the controls for enabling Next on the Success layer.

I hope the above makes sense. If you're not familiar with conditions and variables, check out these articles in the User Guide: