Submit button not taking user to the next slide...

Hi there,
Hopefully this is a simple one!...
The submit button in my quiz does not take the user to the next slide, it just seems to lock and you have to click on the forward button at the bottom of the screen. Does anyone know why this is and how to fix it? I cant use a submit all button as that seems to take away the Action section from the master slide.
Thanks

Hi there,
Swift reply as usual!
I actually solved this one.. I just had to add "go to next slide" in the advanced action!
I did have to copy and paste all my work into a new project though.. must have had my second bug of the week!
Thanks anyway

Similar Messages

  • Clicking a button returns a user to the last slide he/she visitied

    Is there a way in Captivate to create a button that will
    return a user to the last slide he/she visited instead of going
    back to a previous slide?

    I guess not, if you are saying that the "Previous Slide"
    won't work. Just so I don't get too lost, are you saying that the
    previous slide is
    not what the user viewed last? As in, they got to this slide
    through a "jump" from another.
    I wonder if Java-script's "history" command could help. I
    don't think so, because it doesn't involve a HTML document history,
    and to my knowledge, there is no Flash action-script equivalent for
    that Java-script call ... (???)
    Captiv8tor usually follows along behind me looking to add his
    version of help to my posts, so maybe he can give us more
    information on the use of Java-script or Action-script to
    accomplish what you need. Good luck! Larry

  • Submit button disappears when returning to the quiz slide

    Hi everyone,
    We just upgraded from Captivate 4.0 to 5.5. I'm learning 5.5 differences from 4.0 and have one that I can't figure out.
    On the quiz slides, if the learner moves back and forward within the quiz slides, the quiz buttons are fine. However, if they click Back on the 1st quiz slide, then go forward to the quiz slide the submit button flashes briefly then disappears for that slide and all the other quiz slides. I can't find a setting to fix this.
    Any suggestions or thoughts would be appreciated. Thank you.

    Sounds like a quiz scope issue.  If you click back on the first quiz slide that would take you to the slide BEFORE the first quiz slide which is technically outside the quiz scope.  This usually results in Captivate locking the quiz.
    I haven't personally seen this button disappearing act but you can test whether quiz scope is the likely culprit by adding a scored click box to the first slide of the project, which will then extend the quiz scope out to that slide.  If this prevents your quiz slide buttons from disappearing, we know where the issue comes from.  That may mean you have still found a bug that needs to be fixed though.

  • Text overflown is not getting printed in the next page in ADOBE

    Hi Experts,
    I have a text field, where the users can enter the comments. In this text field if the user enters more than a page, a scroll bar appears in the print preview where the users can view the complete text what they have entered, but while printing the text which exceeds more than a page is not getting printed in the next page.
    I have set the subform properties as "Flowed" and the check box "Allow Page Break within content" is also been enabled, but still the extra contents is not getting printed in the next page.
    Please help me regarding this.
    Thanks & Regards,
    Karthik MD

    Hi Lohitha,
    Even "Expand to fit" is been enabled.
    Thanks & Regards,
    Karthik MD

  • Value in a EIT segment(From Update Page)not getting passed to the Next Page

    Hi
    We have a extended CO to populate an EIT field as per the calculation in CO, on a custom button click.
    Calculated value is stored/displayed in the EIT Update Page.
    On clicking Apply, value is not getting passed to the next page, EIT Main Page and further to store the calcualted value in the EIT table.
    Anyone have faced such problem ?
    Thanks
    Arun

    Hi Gaurav
    Facing problems with put/getSessionValue.
    For the first time in a session, we do not have any issues.
    For next transaction in the same session,
    Variable has the same value even if we go for a next EIT transaction, and replaces this value for the field, without pressing the custom button.
    Thanks
    Arun

  • Text overflown in the first page is not getting printed in the next page

    Hi Experts,
    I have a text field, where the users can enter the comments. In this text field if the user enters more than a page, a scroll bar appears in the print preview where the users can view the complete text what they have entered, but while printing the text which exceeds more than a page is not getting printed in the next page.
    I have set the subform properties as "Flowed" and the check box "Allow Page Break within content" is also been enabled, but still the extra contents is not getting printed in the next page.
    Please help me regarding this.
    Thanks & Regards,
    Karthik MD

    Hi,
    This issue is in ADOBE, I think there is no concept of Window in ADOBE,
    The text box is placed inside a Subform.

  • My iphone is activated in my computer but not on iphone whats the next step

    my iphone is activated in my computer but not on iphone whats the next step

    It sounds to me like you either got defective parts or otherwise did not make the repair correctly. We cannot help  with self-repairs here, the iPhone officially not user servicable, but you can ask for advice in the forums on ifixit.com, a site which is dedicated to those attempting their own repairs.
    Regards.

  • On slide No. 13 of my Keynote presentation, I have varous pictures that go through automatically just as I programmed them, but if I I want to get by clicking to the next slide , it does not let me. How can I program so when I want goes to next slide?

    On slide No. 13 of my Keynote presentation, I have varous pictures that go through automatically just as I programmed them, but if I I want to get by clicking to the next slide , it does not let me. How can I program so when I want goes to next slide?

    Keynote is programmed to execute all of the effects in a build sequence before it will move to the next slide.
    If you want tobe able to move to the next slide at any time in a sequence of builds, you will need to set all of the builds on that slide to:  "on click". You will then need to execute each build by pressing the space bar or click the left mouse button for each object.

  • Can I create a Flash button and use it to navigate to the next slide of a PowerPoint Presentation?

    Hello all,
    I've been having a bit of a hard time understanding how to get a button which I have created in Flash to navigate to the next slide of the PowerPoint presentation which it has been added into. I'm fairly new to Flash, so I believe that this is slightly out of my natural skill range, so hopefully someone will be able to help.
    I understand that I somehow need to make use of fscommand in ActionScript, but I'm not sure how I can get Flash and PowerPoint to communicate between themselves. If anyone could write a walkthrough on how to do this, I would be bery grateful.
    I'm using Flash MX 2004 7.0 and Powerpoint 2003.
    Thanks

    Hi. Why not to make the whole presentation in FLASH? What you have to do is to import all the slides inside FLASH. Then place one by one in the stills and then create the code to make the stills advance and show the slides by means of the button. The code for the button goes as follows:
    on (release) {
        nextFrame();
    to introduce this code make sure you press the button and no the frame.
    Then in order to make the presentation open and cover the screen, no matter how big it is, you need to enter the following code in the first frame:
    stop();
    fscommand ("showmenu",false);
    fscommand ("fullscreen", true);
    You will need also a button to quit the aplication. This is the code:
    on (release) {
         stop();
    fscommand ("quit");
    Now write all of this in your application and let me know your experience. MamenFLASH$

  • Email Submit Button not Submitting Full Form

    Hi guys
    I'm new to LiveCycle Designer, so my problem may be something very simple that I have missed.
    I have a simple form which I intend to use for my clients to book training sessions with. It will be emailed to them or downloaded from my website to be completed and the submitted to me via the email submit button on the bottom of page 2.
    My form doesn't have any fancy coding or dynamic content - just simple text fields and drop down boxes. The subform spreads 2 pages and everything is included in just the one subform.
    The email submit button composes an email with the xml file attached, but the xml file only contains the data from the tabulated fields on page 2 - page 1 is completely ignored.
    Can anyone help me out with this please, I'd really appreciate it.

    Hi,
    If you look at the Object / Binding tab and then select the various subforms and objects. You will see that on page 1 these are set to "None"; whereas you will need these set to "Normal", like the table on page 2.
    If the binding is "None" then an xml submit will not return these values. If the binding is "Normal" then the data will be returned.
    Good luck,
    Niall

  • I do not want the learner to be able to click through the project until they hear the audio recorded on each slide, however I also would like them to have click to advance to the next slide.  Is there a way to set up these 2 functions together?

    I do not want the learner to be able to click through the project until they hear the audio recorded on each slide, however I also would like them to have click to advance to the next slide.  Is there a way to set up these 2 functions together?

    I don't like that approach for adult learners, cannot refrain from mentioning that.
    Don't use a playbar but create custom navigation. You'll need a next button on each slide that appears after the audio (in timeline). Since slides will not all have the same duration you'll need an individual button per slide, a shape button on master slide or timed for the rest of the project will not be possible.

  • HT4623 ios 7 download on iphone 4 stuck at rescue email.  Can only go back, will not go on to the next page.

    Please help!  ios 7 download on iphone 4 stuck at rescue email.  Can only go back, will not go on to the next page.

    That makes no sense . Can you take a screenshot and show me? hold home button and power for about 2 sec then on computer import the photo (http://support.apple.com/kb/ht4083) and upload it here. Have you restarted the iphone yet?

  • Header not getting  displayed in the next page in the second table

    Dear Experts ,
    I have a query regarding Header not getting  displayed in the next page in the second table of the main window. .Let me elobrate the issue.
    I have a smartform in which there are  2 tables TABLE 1 and TABLE 2 in the smartform MAIN window. TABLE 1 is for pending PO and TABLE 2 is  for future delivery date P O separated by text in between.
    Now the header for both the tables and the data are getting displayed properly if the total output is in only one page. But If there are more entries in the TABLE 1 the Header for the TABLE 2 is not getting displayed. Header for TABLE 1 yet gets displayed properly in the next page in case of more entries.
    Only issue is that Header for TABLE 2 is not getting displayed in second page but it gets displayed if the entries are less in TABLE 1 and the total output is in one page .
    Please provide a elobrate solution on this problem as the requirement is urgent.
    Thanks,
    Regards,
    Sachin Hada

    Hi Sachin,
    you need to cteate two pages FIRST and NEXT.
    in first page --> FIRST
        next       --> NEXT
    in next page
      page---> NEXT
      next ---> NEXT.
    you copy the first page main window is the same in next page
    aslo
    I think help ful for you
    thanks & Regards
    BHUPAL.

  • My IPod will not automatically advance to the next song.

    IPod will not automatically advance to the next song. I have updated and restored. The Shuffle has the two arrows crossing which I believe means it should be advancing. Any suggestions?

    While playing any song on your iPod, tap the artwork to bring up the scrubber bar and additional controls. On the left hand side is a option for repeat (the right hand side features the Shuffle feature). You want to make sure this icon is white (meaning it is set to Off). If it isn't, tap it either one or two times to change its current setting.
    Any luck there?
    B-rock

  • [svn:osmf:] 12641: Improvements to the DFXP parser, captioning sample, and a bug fix for the TemporalFacet ( duration timers were not taking account of the media being paused).

    Revision: 12641
    Revision: 12641
    Author:   [email protected]
    Date:     2009-12-07 21:10:00 -0800 (Mon, 07 Dec 2009)
    Log Message:
    Improvements to the DFXP parser, captioning sample, and a bug fix for the TemporalFacet (duration timers were not taking account of the media being paused).
    Modified Paths:
        osmf/trunk/apps/samples/plugins/CaptioningSample/src/CaptioningSample.css
        osmf/trunk/framework/MediaFramework/org/osmf/metadata/TemporalFacet.as
        osmf/trunk/plugins/CaptioningPlugin/org/osmf/captioning/parsers/DFXPParser.as

Maybe you are looking for

  • How do I completely disable TB's attempts to tag/flag/judge email as junk?

    I don't want TB to touch my emails with ANY junk classification. I don't want it to display 'junk' icons. I don't want it to 'think' a message is junk mail. How do I permanently, completely and irreversibly disable any and all code in thunderbird tha

  • Dynadock PA3575U-1PRP dynadock U

    We have the dynadock PA3575U-1PRP dynadock U and we are trying to get our 2 - HP w17e monitors to work. So they are both native vga monitor. One works fine - the one connected to the VGA output from the dynadock but the the other monitor does not get

  • Configuration of the Import Manager in order to use the Import Server

    Hi all,         Firstly thanks a lot for all. The question is: I need to set all the properties neccesary to use the Import Server, so would be very positive to know how to set all the default import action in the import manager. when I try to make t

  • Changing DFF and Date Information on Copied Orders

    Can anybody tell me if it is possible to change existing DFF information and line date information on a copied order? I assume so but require confirmation. Thanks

  • Application document not posted / business partner in RPM

    Hi, We tried to import data from ECC HCM System to RPM system, by using tcode PFAL, and when we review the result with tcode bd87 (receiver system) these errors occurs: 51 Application document not posted. 52 Application document not fully posted. The