Prev and Next button appear after revisit the quiz.

Apr 30, 2014

Hi all

I have disabled the Prev and Next button for all the slides.  I have created a custom button to allow reset the quiz. I published the project to both html5 and flash. The flash version works perfectly fine but the issue with HTML5 version is that the "Prev" and the "Next" button would appear after revisiting the quiz (as seen in the picture). They only appear after revisit the quiz.

I am using Storyline Update 1. Is it a bug of this version or I have done something wrong.

Thanks.

Yang

47 Replies
Marge Rutter

I know this is an old thread.. but if anyone is still listening, I'm wondering how to set a trigger for that Next button that appears by default when revisiting a quiz slide.

I've got a scene that has a series of quiz questions. You access that scene from a main menu slide in another scene. And at the end of the quiz questions, I want users to be able to return to that main menu slide again. This works fine first time through... the Continue button has a trigger that returns them to the main menu slide. 

If they revisit the Quiz scene, they can review each of their questions/answers, clicking Next to go from question to question. This is fine. But when they get to the last question, the Next button doesn't do anything. And there is no way to add a trigger to the Next button on that slide to send it back to the main menu slide... because the Next button was turned off for all of the quiz questions.  It's only showing up because it is the default behavior in Storyline, as noted above.

As a possible solution, is there a way to add a button on that last slide that will only display when the quiz question is being revisited? And then I could add a trigger to that button?

Thanks for any help here.

Christophe Jacobs

Hi Marge,

Since I can't see your project file I am going in blind with my answer, but maybe it can help.

Possible fix

When you are enabling the option to 'ALLOW USERS TO REVIEW QUIZ' (found under the options on the result slide) you are actually creating an extra layer for each of your question slides. And in contrary to popular belief, you can manipulate this layer and do anything you want with it on this layer (like adding an extra button with a trigger that brings the user to any place you want).

How to see this extra layer in your project

For each question, make sure the view is set to 'FORM VIEW'.

Then look for the FEEDBACK AND BRANCHING options found at the bottom of the form. Underneat the CORRECT and INCORRECT feedback you will see a box POST-QUIZ REVIEW.

This box is empty by default. This means that you will never see this when you go back to SLIDE VIEW. What you however do see on the slide view (automatically) is the CORRECT and the INCORRECT layer.

 

This makes sense because there is something to display on these layers since the feedback text is pre-filled. Now comes the clue of the story. If you type something in the POST-QUIZ REVIEW box there is a new layer added to the SLIDE VIEW. Storyline will now add a new layer called REVIEW.

Now you can play around with this layer and have full control on what you want to achieve in your project when users are reviewing a particular question.

Extra tip

The REVIEW layer added by using the POST-QUIZ REVIEW field listens to the REVIEW FEEDBACK layout in your FEEDBACK MASTER. If you work with master slides, you now know where to change the default look and contents of this layer.

Let me know if this was helpfull in any way!

Nigel Ross

Hi

I notice this thread is 2 years old - has anyone found a solution to this problem? I have a course with custom navigation buttons - everything looks and works fine until you go back to review the quiz then these annoying prev and next buttons appear. More annoyingly they appear in a position on the slide that blocks some key text. If they cant be disabled, is there any way of changing where they appear?

Hope someone can help....

Nigel

Greg Brown

I just wanted to weigh in here, as my problem is similar and related, but unfortunately none of the fixes here work for me.

I've created a short course that involves two different versions of the same events; basically, a "fun" version (with a wacky character) and a more "mellow" version, in order to give our stakeholders a couple of options. The only difference is three videos, otherwise the courses uses the same content/quiz slides for both versions, using conditional branching (i.e., "If Wacky = True, go to this slide when clicking next", etc.).

This works fine going through the course, but if the user chooses to review, we send them back to the first slide (the one that allows them to choose "wacky" or "mellow), and if the user uses "Next" buttons that previously were not there (we created custom next/submit buttons), then the conditional branching doesn't work because there's no way for me (as far as I can tell) to see the "Review only" controls and therefore I cannot add the conditional command required to tell that next button where to actually send the user.

So, two questions:

1. Is there a way to edit where the "Next" and "Previous" buttons link to in Review mode?

2. Is there a way to turn off "Next" and "Previous" buttons in Review mode and substitute our own navigation scheme?

Thanks!

Wendy Farmer

Hi Greg

Q1 - if you are using variables then you should be able to set triggers:

jump to slide wacky when user clicks Review button on condition wacky =true

Jump to slide mellow when user clicks Review button on condition mellow= true

Q2. On the master slide layout set triggers

Change state of Next button to hidden when timeline starts

Change state of Previous button to hidden when time starts.

 

Marc Lenzke

I'm running into this same problem with Storyline 3. On screens with quizzes I created a trigger to Execute JavaScript and used this code and it seems to be working for me:

var slidenav = document.getElementsByClassName("control-actions");
if(slidenav.length !== -1) {
slidenav[0].style.display = "none";
};
Inbal fishman

Hi all,

I had the same problem, when revisiting the quiz, Next and Prev buttons appeared.

I think I figured it out, after struggling quite a bit with that problem, I recalled that my project had an isolated slide that wasn't connected to the other slides (with spare elements for use in the project).

That slide had navigation controls!

When I disabled the controls in that slide, it fixed the problem! (check all slides for these controls)