Forum Discussion

OBryant's avatar
OBryant
Community Member
24 days ago
Solved

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 sp...
  • Nedim's avatar
    Nedim
    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.