Forum Discussion
DarinFennell
10 months agoCommunity Member
Incorrect in every review question
I created an assessment in Storyline 360 that includes 4 questions. At the end of the assessment is the Results slide. If you don't pass, the Results slide shows the "Incorrect" layer with "Retry" an...
Nedim
10 months agoCommunity Member
Just cover it with a shape as Judy suggested or use JavaScript trigger when the timeline starts on each quiz question:
const correct = document.querySelector('[data-acc-text="Correct"]');
const incorrect = document.querySelector('[data-acc-text="Incorrect"]');
correct.classList.add('hidden');
incorrect.classList.add('hidden');
Related Content
- 1 year ago