Skip to main content
Participating Frequently
October 23, 2017
Answered

Split Quiz and the Retake Quiz button

  • October 23, 2017
  • 2 replies
  • 241 views

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.

    This topic has been closed for replies.
    Correct answer RodWard

    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.

    2 replies

    Participating Frequently
    October 24, 2017

    Thankyou both. All done and working perfectly!

    Lilybiri
    Legend
    October 24, 2017

    Sorry, my bad, did not read the question correctly.

    Lilybiri
    Legend
    October 24, 2017

    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

    RodWard
    Community Expert
    RodWardCommunity ExpertCorrect answer
    Community Expert
    October 24, 2017

    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.