Skip to main content
Participating Frequently
October 24, 2018
Answered

Non-Linear Quiz - How to skip content slides

  • October 24, 2018
  • 1 reply
  • 418 views

Greeting from Chicago!
Hi everyone, I'm hoping someone can lend me a hand.

I need to create a course with the following behavior:

a number of "timed" slides are presented

a graded quiz question (or multiple questions) is presented to the learner

after quiz questions are answered, learner returns to course content

a number of "timed" slides are presented

another graded quiz question(s) is/are presented.

Quiz results displayed to learner at end of course

On "passing grade" learner is moved out of course

On "failing grade" learner is moved to re-take quiz

How do I allow the learner to retake the quiz without them needing to go through the timed content slides all over again?

Thanks for your help everyone!

This topic has been closed for replies.
Correct answer Lilybiri

There are mulitple solutions. I suspect the first visit to the course is linear? If not, let me know.

The attempts on quiz level are stored in a system quizzing variable, cpInfoAttempts. It has the value 1 on the first attempt. You can create a conditional advanced action, to be applied to the first slide of a sequence of content slides (if it is a linear course), that will look like this:

IF cpQuizInfoAttempts is greater than 1

   Jump to slide...           which is the first slide of the next question sequence

ELSE

    Continue

1 reply

Lilybiri
LilybiriCorrect answer
Legend
October 24, 2018

There are mulitple solutions. I suspect the first visit to the course is linear? If not, let me know.

The attempts on quiz level are stored in a system quizzing variable, cpInfoAttempts. It has the value 1 on the first attempt. You can create a conditional advanced action, to be applied to the first slide of a sequence of content slides (if it is a linear course), that will look like this:

IF cpQuizInfoAttempts is greater than 1

   Jump to slide...           which is the first slide of the next question sequence

ELSE

    Continue

AHI225Author
Participating Frequently
October 24, 2018

Hi Lilybiri!

Thank you so much for your insight on this. It worked perfectly!

Yes the course is linear.

I'm assuming I would need to write and attach this advanced action on each of the content slides that follow a question slide. (editing the "target" slide numbers of course)

Lilybiri
Legend
October 24, 2018

There are two possibilities. You could add an advanced action to all content slides that are in between quiz slides, and replace the Jump to.... by Go to Next Slide. Another possibility is to create a shared action, with the Jump to... and define the slide label or the slide number as parameter. Then you can apply that shared action only to the first content slide after a quiz slide.