Skip to main content
Participant
June 9, 2016
Question

Custom results slides not functioning or scoring properly

  • June 9, 2016
  • 1 reply
  • 212 views

Here’s is the setup of the slides in our Captivate file:

  • We have a question pool

  • We do NOT want to include a Results slide, and would instead like to use:
  • When failing, a slide which includes a less positive image and constructive feedback text

In our file, the slide we want to display when a learner passes is slide #26 and the slide that we want to display when a learner fails is slide #27.

When we hide the Results slide, we only see slide #26 regardless of whether the learner passes or fails. (Since this is the first of the two slides). The file seems to just continue instead of evaluating the Quiz: Pass or Fail project settings

When we show the Results slide (slide #25), the Quiz: Pass or Fail settings are correctly evaluated and once the learner clicks on the continue button for the Results slide they go to slide #26 if they pass (or slide #27 if they fail).

Is there an easy way to do this with Captivate Settings? Or do we need to create our own Advanced Action/JavaScript to make this happen when there is no Results slide?

Thanks in advance for any suggestions.

This topic has been closed for replies.

1 reply

Lilybiri
Legend
June 9, 2016

Indeed, the Continue button on the Score slide is triggering those actions. Since you did hide that Score slide, this button is never clicked.

This is my suggestion: create a conditional advanced action to be triggered On Enter of the first slide, in your case slide 26:

IF cpQuizInfoPassFail is equal to 1

    Continue

ELSE

    Jump to slide 27

    Continue

You have to take care that there is no possibility to go from slide 26 to slide 27 (no playbar please), or you could create another similar action, to be triggered On Enter for slide 27 to skip slide 27 (Jump to slide 28) if cpQuizInfoPassFail is equal to 1