1424 Workshop Editing
This is a guide on how to edit the 1424 Refresher Exercise Workshops.
Anatomy of the 1424 refresher workshop template
Open the project variables manager to view the list of variables. The labels are the same variable name in the project variables of a Storyline project.

Variables to update when creating a new workshop using this template
- answerOption_1 - first answer option
- answerOption_2 - second answer option
- answerHeaderTitle - header title for answers on trainer dashboard
- emptyReasonMsg - error message when submitting answerOption_2 without reason
- noAnswerMsg - error message when submitting without selecting an answer
- items - number of answers to capture
The last thing to edit on this template is the submission script that's triggered when you select yes on the submit answer confirmation lightbox. Knowing how to write JavaScript code is required in this step.
Update the correctAnswersList
array in the script to the correct answers of the workshop.
const correctAnswersList = [option1, option1, option2, option2];
Click to copy