Skip to main content
Participant
July 13, 2015
Question

When Retake Quiz is clicked instead of going to the first question at the end of the module, it will go to the first quiz question embedded in the module

  • July 13, 2015
  • 2 replies
  • 233 views

When Retake Quiz is clicked instead of going to the first question at the end of the module, it will go to the first quiz question embedded in the module even though the “Report Answers” checkbox in the properties is unchecked for the embedded question.   Do I have to remove the embedded question and only use quiz slides in the module end assessment or is there a way to code the behavior of the module end assessment to discount the embedded quiz slides? 

This topic has been closed for replies.

2 replies

GlasslionAuthor
Participant
July 13, 2015

Version Captivate 8

Lilybiri
Legend
July 13, 2015

Hello,

Sorry, but that is the way the Quiz is designed.  I can describe a workaround, without having to take the non-scored questions out, but first tell me which version you are using, please?

Lilybiri

GlasslionAuthor
Participant
July 13, 2015

Oh sorry! Captivate 8

Lilybiri
Legend
July 13, 2015

8.0.1.242?

In the Quizzing system variables there is the variable cpQuizInfoAttempts. It is set to 1 when the first attempt (on Quiz Level) starts. When you click Retake button on the score slide it will be incremented immediately. You will need a conditional advanced action (or shared action if you want to re use in other projects), testing the value of this variable. The action will look like this:

IF cpQuizInfoAttempts is greater than 1

    Jump to ....                  indicate the number or label of the first 'real' question slide here.

    Continue

ELSE

    Continue

I supposed here that everything is linear from the first real question slide, and no branching occurs?