Forum Discussion
Storyline Quiz Review - Is the Incorrect/Correct message editable?
Hi All,
I’ve managed to find a work around if anyone is still interested; however, it does require some work to set up.
Step 1: Create a question slide and results slide. Edit the quiz on the results slide and turn off ‘Allow user to review quiz’ and ‘Show correct/ incorrect responses when reviewing’ for your quiz. This set is turning off the default review and below we are going to create our own.
Step 2: Create your own ‘Review’ button on your results slide.
Step 3: Create a variable with a default value = False. E.g., review_quiz
Step 4: Create the following triggers on the ‘Review’ button:
(1) Set ‘review_quiz’ equal to True when the user clicks
(2) Jump to ‘Question 1’ when the user clicks
Step 5: Create a ‘Retry Quiz’ button and add the following triggers:
(1) Set ‘review_quiz’ equal to ‘False’ when the user clicks
(2) Reset results when the user clicks
(3) Jump to ‘Question 1’ when the user clicks
Step 6: Go to a question slide and create two shapes. These will display as correct or incorrect upon the review. Set initial state to Hidden. Have your answers already created, let’s assume the correct answer is ‘Answer 1’.
Step 7: Create the following triggers on the base layer of the question slide.
(1) Change state of ‘Correct’ to ‘Normal’ when the timeline starts IF ‘Answer 1’’s state is equal to ‘Selected’ and ‘review_quiz’ is equal to ‘True’
(2) Change state of ‘Incorrect to ‘Normal’ when the timeline starts IF ‘Answer 1’’s state is not equal to ‘Selected’ and ‘review_quiz’ is equal to ‘True’
In summary, we are setting up a review trigger that turns on upon review and turns off when the review is finished. If you have multiple quizzes you might want to add a trigger to set ‘review_quiz’ to False to a ‘Finish Quiz’ button, or even when the timeline starts on the results slide. Secondly, we are hiding/ showing the correct/ incorrect shapes based on whether the correct answer is selected or not.
Although it’s a bit of work to set up, you can just copy a skeleton template for future questions.