Skip to main content
EngilityTrain
Inspiring
November 26, 2014
Answered

retake quiz to go back to only quiz questions

  • November 26, 2014
  • 2 replies
  • 466 views

Hello,

My course has the quizzes in between the instructional slides. There is a minimum passing score in order to pass the course. When the user fails, they go to the result slide with retake quiz button. But they have to review all the slides after the first quiz slide and instead of only questions slides. How can I fix this issue? I use captivate 7.

thanks.

    This topic has been closed for replies.
    Correct answer Lilybiri

    You'll need some advanced (or shared) actions. There is a system variable cpQuizInfoAttempts that is incremented when the Retake button is clicked, with the first question slide. The first time it is set to 1. When it is greater than 1 the user is in Retake mode. At that moment the content slides have to be skipped. Create a conditional action like this:

    IF cpQuizInfoAttempts is greater than 1

        Jump to slide X

    ELSE

         Continue

    If you turn this into a shared action, 'slide X' will become a parameter.

    You'll need to trigger this shared action with the On Enter event of the content slide, immediately after a quiz slide (or a series of quiz slides). The parameter 'slide X' has to be the slide with the next question, and will have to be changed depending on which slide you have to jump to.

    2 replies

    EngilityTrain
    Inspiring
    December 1, 2014

    Thank you so much. My Retake button is working correctly, now =)

    Lilybiri
    LilybiriCorrect answer
    Legend
    November 26, 2014

    You'll need some advanced (or shared) actions. There is a system variable cpQuizInfoAttempts that is incremented when the Retake button is clicked, with the first question slide. The first time it is set to 1. When it is greater than 1 the user is in Retake mode. At that moment the content slides have to be skipped. Create a conditional action like this:

    IF cpQuizInfoAttempts is greater than 1

        Jump to slide X

    ELSE

         Continue

    If you turn this into a shared action, 'slide X' will become a parameter.

    You'll need to trigger this shared action with the On Enter event of the content slide, immediately after a quiz slide (or a series of quiz slides). The parameter 'slide X' has to be the slide with the next question, and will have to be changed depending on which slide you have to jump to.