Forum Discussion

DarinFennell's avatar
DarinFennell
Community Member
2 months ago

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" and "Review" buttons. If you click "Review", it takes you to the first question in the assessment. A trigger was created to show an object state for each question as correct or incorrect. However, the bottom of the screen always shows "Incorrect". That information was not created by me and I can't find where it resides in my module.

Does anyone know where this "Incorrect" message comes from and whether I can get rid of it or not?

 

6 Replies

  • The red Incorrect and green Correct banners are built in. They can be covered up by an object in the Review layer, but Storyline doesn't have a way to turn them off. 

    If you search this community, you might find a JavaScript solution.

  • Nedim's avatar
    Nedim
    Community 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');

     

  • DarinFennell's avatar
    DarinFennell
    Community Member

    I guess the big question is, why am I not seeing the "Correct" banner for any of the questions I got right?

    • Nedim's avatar
      Nedim
      Community Member

      See if setting the slide properties to "Automatically decide" solve the issue. 

       

      • DarinFennell's avatar
        DarinFennell
        Community Member

        So the "Automatically decide" appears to have fixed the "Incorrect" for everything issue. That said, I discovered part of the issue was that my template was trying to use slide layers to display three options (A, B, C) when it only had two (correct, incorrect). I removed the third option and everything appared to work. Thanks all!

  • Thanks for clarifying the question. So, as I now understand it, you're seeing every question marked as Incorrect when you review a quiz, even though you know you answered correctly. 

    Best guess without seeing the file: Nothing has been indicated as the correct answer. You can check this in Form View: 

    If a question has responses, but none is selected in the Correct column, the question will always be scored as Incorrect.