Skip to main content
Known Participant
October 4, 2016
Answered

Quiz Results broken out per slide

  • October 4, 2016
  • 1 reply
  • 250 views

I have a set of 4 slides that have 49 click boxes on each of them.  The click boxes are on top of 49 numbers.  The activity for the user is to find each number 1 through 49 in the correct order in a set amount of time.  (It gets easier as you go through the slides teaching a lesson on organization)  What I would like to include after each slide is a results page only for the previous slide that they have just completed.  It would say "I'm sorry but you failed to find all 49 numbers" or "Congrats you have completed the task required" depending on their results from the previous slide. 

I have seen some indication that I will need to use advanced actions and variables, but can't seem to quite figure it out (this is the first major project I've done with captivate).  I'm using Captivate 8.

This topic has been closed for replies.
Correct answer Lilybiri

Maybe in that case (midnight here, too tired to try it out extensively) you'll only need a counter (variable v_counter) that keeps track of the correctly clicked spots and a boolean variable that will be toggled from à to 1 when the condition for the last number is corect::

  • Having the counter equal to 49
  • Being within the time limit

The counter should be incremented from the start value of 0 with each correct click.

You can then use the On Enter event of the following slide to show the Correct or Failed feedback that is previously hidden.

1 reply

Lilybiri
Legend
October 4, 2016

Is this interpretation correct: the success feedback will only appear if the user clicked on the last number within the time limit, and has clicked 49 numbers in total?

Known Participant
October 4, 2016

Yes that is correct.

Lilybiri
LilybiriCorrect answer
Legend
October 4, 2016

Maybe in that case (midnight here, too tired to try it out extensively) you'll only need a counter (variable v_counter) that keeps track of the correctly clicked spots and a boolean variable that will be toggled from à to 1 when the condition for the last number is corect::

  • Having the counter equal to 49
  • Being within the time limit

The counter should be incremented from the start value of 0 with each correct click.

You can then use the On Enter event of the following slide to show the Correct or Failed feedback that is previously hidden.