Copy link to clipboard
Copied
Does anyone know how I could use the quiz feature in Captivate 2019 for medical screening? A Knowledge Check is not graded, which does not work as I need to know how many "yes" and "no" responses. A regular quiz does not work, as there really is no right or wrong answer when screening, and quiz questions have a right and wrong answer. Can this only be done by creating user variables and advanced actions?
Copy link to clipboard
Copied
What do you want to do with the results? If you only need two totals of Y/N this could be done with normal quiz slides. Give some more details please. I have some blogs about using regular quiz slides for survey but that may not be appropriate for your use case.
Example: you only want to have the total of Y and N:
Not so complicated..
Copy link to clipboard
Copied
Lilybiri, Thanks for the fast response. If they score at or above a specific percentage of "yes" answers, I jump to a specific slide. If they score below a specific percentage, I want to jump to a different slide. Depending on the type of medical screening, I may want to jump to one of several slides, determined by their "score". Does this provide enough additional background?
Copy link to clipboard
Copied
Sure... Instead of the mentioned system variables, use cpInfoPercentage. The start of the workflow will be the same: create T/F questions (you may change the True to 'Yes' and the False to 'No'. Keep the T as correct answer.
You will need an advanced (or shared action, if you will need this to be used often) action, to be triggered by an event. Since you are using real quiz slides, you'll get a score slide, which you can hide. Have the slides to jump to after that score slide, you can use the On Enter action of the first slide after the score slide to trigger this action, if you have only two branches:
IF cpInfoPercentage is greater or equal to X
Jump to slide X
ELSE
Jump to slide Y
You will have to be careful: take out the default playbar. You will not allow them to scrub the progress bar, not using the Next/Back buttons. The quiz slides have the Submit button, which will figure as Next button. Since the Score slide is hidden, the user will end up on the first slide after the score slide.
If you want multiple branches, you'll need multiple decisions, some with combined conditions. No ELSE parts, so that the decisions are mutually exclusive:
IF cpInfoPercentage is less than ...
Jump to ....
IF cpInfoPercentage is greater or equal to AND
cpInfoPercentage is less than ...
Jump to ....
.....