Forum Discussion
MicheleAnderson
4 years agoCommunity Member
Results Slide Points - Reviewing Incorrect Answers Subtracts Even More Incorrect Points
Hello to everyone!
I've created a Cyber Security assessment type course with 11 question banks offering random questions from each bank for a total of 33. I want the Results slide to display total...
JudyNollet
4 years agoSuper Hero
Hi, Michele,
The subtraction trigger is set to execute when the timelines starts, and that means the program will perform the subtraction every time user returns to the Results slide. Note: That'll happen even if you set the slide to "Resume saved state," because the program would still execute timeline triggers (a known bug).
You can prevent the extra subtractions by controlling the subtraction trigger with a condition.
- Create a T/F variable with the initial value of False. For this case, I'd call it "Quiz_Reviewing" or something like that.
- Add a condition to the subtraction trigger so that it only executes when "Quiz_Reviewing" is False.
- Add a trigger to the Review Quiz button that adjusts "Quiz_Reviewing" to True.
- Add a trigger to the Retry Quiz button that adjusts "Quiz_Reviewing" to False.
- Add a trigger to the Retry Quiz button that adjusts "Incorrect" back to its default value (33).