Forum Discussion
Need to remove spinning hotspot icon in quiz review in Storyline.
This can be done with a single line of JavaScript. The code is executed on the Review layer, which is activated through the Form View. If you're open to a JavaScript solution, let me know and I’ll share the code.
- OBryant9 hours agoCommunity Member
Thank you. I don't know much about it but I am open to see what you got!
- Nedim9 hours agoCommunity Member
1. Go to Form View and type Review in the Post-quiz review field.
2. Switch back to Slide View and locate the Review layer. Delete the automatically added text shape on that layer. Then create an Execute JavaScript trigger that runs when the timeline starts on this layer.
3. Open the Execute JavaScript trigger and paste the following code:
document.querySelector('.hotspot-marker').style.display = 'none';Note: The hotspot marker will be visible every time the question is loaded or the quiz is restarted. It will only be hidden when the learner chooses to review their answers from the Results slide.
Related Content
- 1 year ago
- 9 years ago