Copy link to clipboard
Copied
Dear all,
I have in my Captivate 8 a project with different quizzes (1 quiz at the middle of the project and 1 quiz at the final of the project).
I want to add a special button for my learner to give him the possibility to reinitialise the final quiz if he fails to success.
To do so, I have added in my final quiz a button to reinitialise the final quiz.
But, when the learner click on it, he accesses directly to the quiz at the middle of the project instead of the final quiz.
Do you know how could I create a button to give the possibility for the learner to replay only the final quiz?
Thank you in advance,
Best regards,
Ana.
You are talking about the Retake button? That behavior is the normal one, because each Captivate file can have only one quiz, even though you have in your mind two quizzes. You probably didn't include the score of the first quiz in the total score?
You'll need a conditional advanced action to be triggered on the first 'knowledge question' slide, that checks the value of the quizzing system variable cpQuizInfoAttempts. If that variable has a value greater than 1, you are at least in the second att
...Copy link to clipboard
Copied
You are talking about the Retake button? That behavior is the normal one, because each Captivate file can have only one quiz, even though you have in your mind two quizzes. You probably didn't include the score of the first quiz in the total score?
You'll need a conditional advanced action to be triggered on the first 'knowledge question' slide, that checks the value of the quizzing system variable cpQuizInfoAttempts. If that variable has a value greater than 1, you are at least in the second attempt for the quiz at quiz level. In that situation, you'll have to skip the knowledge slides and jump to the first slide of the real quiz. Conditional action will look like this:
IF cpQuizInfoAttempts is greater than 1
Jump to slideX slideX is the first real question slide
ELSE Continue
Copy link to clipboard
Copied
Thank you so much for your reactivity Lili !
Yes, I was talking about the retake button. I will try your solution
Thank you again!