Forum Discussion
Need to remove spinning hotspot icon in quiz review in Storyline.
- 23 days ago
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.
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.
- OBryant23 days agoCommunity Member
Thank you. I don't know much about it but I am open to see what you got!
- Nedim23 days 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.
- OBryant22 days agoCommunity Member
Thank you so much, that worked!
Related Content
- 1 year ago
- 9 years ago