Reset Review Course Variable?

Good day, all;

I am trying to add a quiz in ActivePresenter with a Report Slide at the end that includes a Try Again button. I’ve added the button and (I think) have made it so user inputs are cleared when the user clicks Try again.

The issue is with the Review Course button. I’d like users to be able to get to the end of the quiz, click that button to review the slides and questions/answers then click on the Try Again button to, you know, try again :joy:.

The problem is that the Review Course button remains active (rather the apReviewMode remains equal to True in proper lingo), so when users go back to the start of the quiz, they still see the review/answers.

I tried creating and adding a variable to my Try Again button and setting the question slides to On Load Show Responses If apReviewMode is equal to True AND Try Again was equal to False, thinking that if I clicked Try Again and adjusted the variable to True, the the Show Responses wouldn’t show. But it didn’t work.

Is there any way to make it so the users click on Review Course and set the apReviewMode to True but then click on my Try Again button and set the apReviewMode back to False? Some script I can try…?

Thanks in advance!
samamara

Would it work for you to have your try again button perform a Restart Presentation when clicked?

1 Like

Ah @gregs - as usual you nailed it! That totally works. I saw that action but for some reason I thought maybe it would start the whole presentation from the beginning, but I guess since I said clicking the Try Again would go to the first slide of the quiz, that’s was the guider.

Thanks a lot @gregs - always appreciated!

samamara

1 Like

Sure - If you needed to target a specific slide on restart - you can always add a goTo Slide action on your button as well.

image

2 Likes

That was my existing set up - for the button to direct to the slide that starts the quiz - but with the presentation restart it’s exactly what I needed :folded_hands:t2: thanks so much!