Copy link to clipboard
Copied
Hi all,
Thanks for all the amazing advice I have gleaned from here over the last 12 months after starting on Captivate.(vers 9)
A small issue I can't solve if the user doesn't pass and hits re-take quiz.
The first quiz is on slides 20-23 then the second part is on slides 40-43. When I test it, fail and select re-take quiz, it does start me back at slide 20 which is great but then forces me to go through all the content slides between the quizes (23-40). Does anyone know a way I could have Captivate recognise a quiz resit and just show the quiz slides only?
Hope that makes sense. Thanks.
Lieve,
The poster is not in Review Mode, he's talking about RETAKE Quiz.
So the better option here would be to use the System Variable cpQuizInfoAttempts which returns the number of times the quiz has been attempted by the learner. Then the Condtional Action would look like:
IF cpQuizInfoAttempts is greater than 1
Jump to slide 40
ELSE
Continue
This would skip the content slides between the first and second part of the quiz but only AFTER the learner had done the quiz once.
Copy link to clipboard
Copied
There is a system bar cpInReviewMode which you could use in a conditional advanced action, triggered by the On Enter event of the first content slide after 23.
IF cpInReviewMode is equal to 1
Jump to slide 40
ELSE
Continue
Copy link to clipboard
Copied
Lieve,
The poster is not in Review Mode, he's talking about RETAKE Quiz.
So the better option here would be to use the System Variable cpQuizInfoAttempts which returns the number of times the quiz has been attempted by the learner. Then the Condtional Action would look like:
IF cpQuizInfoAttempts is greater than 1
Jump to slide 40
ELSE
Continue
This would skip the content slides between the first and second part of the quiz but only AFTER the learner had done the quiz once.
Copy link to clipboard
Copied
Thankyou both. All done and working perfectly!
Copy link to clipboard
Copied
Sorry, my bad, did not read the question correctly.