Skip to main content
Participant
September 12, 2019
Answered

Quiz Review - Quiz slides only

  • September 12, 2019
  • 1 reply
  • 561 views

I am creating a graded quiz with no fail/pass setting. At the end, the user is allowed to review their quiz responses, and as is, the "Review Quiz" button brings them back to the first of 10 questions. As they click through, they ALSO see the non-quiz slides in between the quiz slides. Is there a way to show ONLY the quiz questions as they click through (skipping the non-quiz slides in between)? I'm using Captivate 2019. Thanks.

This topic has been closed for replies.
Correct answer Lilybiri

You'll need a simple conditional advanced action to be triggered On Enter for the content slides, which checks the value of the system variable cpInRaviewMode and navigates to the next question slide if that variable has the value = 1:

 

IF cpInReviewmode is eqaul to 

    Jumpt to....                                    which is the next quiz slide

ELSE

     Continue

1 reply

Lilybiri
LilybiriCorrect answer
Legend
September 13, 2019

You'll need a simple conditional advanced action to be triggered On Enter for the content slides, which checks the value of the system variable cpInRaviewMode and navigates to the next question slide if that variable has the value = 1:

 

IF cpInReviewmode is eqaul to 

    Jumpt to....                                    which is the next quiz slide

ELSE

     Continue

Participant
September 13, 2019
Thank you, Lilybiri! That worked perfectly!