Skip to main content
Participating Frequently
July 7, 2022
Answered

Retake quiz, quiz slides only

  • July 7, 2022
  • 1 reply
  • 352 views

Hello.

 

I've seen some similar posts, but I'm not sure what to do. I have 10 graded quiz questions built throughout my course (2-3 questions after the end of a chapter). On the quiz results slide right after the final question, if the user fails and has to click the Retake Quiz button, I'd like them to be able to go back through and answer all the quiz questions again without having to view the content slides between. Is there a way I can do this without having to use the TOC or add some kind of button on the content slides they have to click to skip ahead? For example, is there maybe an action I could put On Enter of the content slides that if they've already been viewed, skip the slide? Thanks.

    This topic has been closed for replies.
    Correct answer Lilybiri

    I have answered this question already a couple of times, but the Search functionality in this forum is not 'perfect'.

    Here is a possibility which uses the system variable cpQuizInfoAttempts:

    • Create a shared conditional action which would be like this:
        IF cpQuizInfoAttempts is greater than 1
           Jump to slide  X            X being the parameter
        
      ELSE
            Continue
    • Attach this action to the On Enter slide event of the first content slide in a sequence of content slides. The parameter will be the first question slide of the next sequence of question slides. That way learner will jump over the content slides. If you allow free navigation by playbar or TOC during the quiz (I always take it out in Quiz Preferences) you would need to do this On Enter for each content slide, and then it may be quicker to create advanced actions from that shared action, since one advanced action will be needed for a sequence of content slides.

    1 reply

    Lilybiri
    LilybiriCorrect answer
    Legend
    July 7, 2022

    I have answered this question already a couple of times, but the Search functionality in this forum is not 'perfect'.

    Here is a possibility which uses the system variable cpQuizInfoAttempts:

    • Create a shared conditional action which would be like this:
        IF cpQuizInfoAttempts is greater than 1
           Jump to slide  X            X being the parameter
        
      ELSE
            Continue
    • Attach this action to the On Enter slide event of the first content slide in a sequence of content slides. The parameter will be the first question slide of the next sequence of question slides. That way learner will jump over the content slides. If you allow free navigation by playbar or TOC during the quiz (I always take it out in Quiz Preferences) you would need to do this On Enter for each content slide, and then it may be quicker to create advanced actions from that shared action, since one advanced action will be needed for a sequence of content slides.
    Participating Frequently
    July 7, 2022

    This did exactly what I needed. Thank you so much!

    Lilybiri
    Legend
    July 7, 2022

    Sure, is it possible to mark the answer as being correct for the sake of other users looking for (and finding?) a solution for a similar situation?