Forum Discussion
SteveWarren-304
3 years agoCommunity Member
Stop Users from Taking Tests Without Viewing Content
Hi
I have just been informed that, in all my courses, users can simply navigate straight to the quiz at the end, without viewing any content, and be marked as "passed" if they guess right. This h...
TomKuhlmann
3 years agoStaff
You can use variables to track that people have viewed slides or sections, etc. Then enable moving the to the quiz on the condition that the variables are at a specific value.
Most people would use a T/F variable. Assume you had 5 slide and the 6th was a quiz. The sixth slide isn't available at slide 5. The button to get there is not available.
- Create a T/F variable for each slide (or perhaps after a section). Example: var_Slide1visited=F
- When they get to slide 1, create a trigger to change the value of var_Slide1visited=T when timeline of slide starts
- At the place where they need to access the quiz, create a trigger to change state of nav button to normal on the condition that all of those variables are true
That's the gist of it. There are a few ways to do it, but essentially you can use variables to track the movement through the course and then enable the navigation on specific conditions.