Forum Discussion
Need to remove spinning hotspot icon in quiz review in Storyline.
Hello, I am at a loss with this issue: I have a quiz designed in Storyline and the questions are hotspot question and are submitted "on click." However, when I get to the review slides, there is a spinning wheel icon that shows up on the answer the user clicked and I can't figure out how to remove it from the review slides. I want each question to be show in the slides and whether they were correct or incorrect, but I don't want the spinning wheel showing which answer they clicked. If anyone knows how to do this, I'd appreciate some guidance!
Thank you.
3 Replies
- NedimCommunity Member
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.
- OBryantCommunity Member
Thank you. I don't know much about it but I am open to see what you got!
- NedimCommunity 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