Advanced Action not applied if button is clicked 1time

I am making a game in Cap 5 that has a timer. We were given feedback that sometimes the timer stresses people out - so I added a Hide and a Show button on each slide. Clicking a button executes an advanced action that corrsponds w/the button name - but both buttons still appear the whole time. Example: The learner clicks Hide, the timer goes away, learner is kept on the same slide but they don't see the timer (all expected). Button for Hide is still there and does nothing if clicked. Learner clicks Show button and the timer is shown (expected), but the timer is reset (not expected). Lesson stays on that slide (expected). Learner re-clicks hide and the timer is hidden (expected). Learner re-clicks Show and the slide advances (not expected) and timer is reset (not expected).
The timer is a widget that we created and is set to appear for the rest of the slide. It worked well before this show/hide stuff was added. Any ideas?
Bonus round: There is audio on this same slide - and it will not play when the slide advances from previous slide...though it will play if you click forward and then back to this slide. Any ideas there?
I'm happy to attach images - if you think this will help. Let me know what you need.
Thank you!

Most widgets execute their code when they enter "Runtime" on the Captivate stage. Essentially this can be translated as when the widget is shown on the stage then it will execute its code.
If you hide a widget and then show it again then the widgets code will execute once more as it figures it is entering "runtime" for the first time.
The best option is to add the "show/hide" buttons directly in the widget as you can keep the widget visible on the stage, but simply hide the timer movieclip. This would make sure that the timer is not reset.
www.cpguru.com - Adobe Captivate Widgets, Tutorials, Tips and Tricks and much more..

Similar Messages

  • Using Advanced Actions to Make a button appear only after three other click boxes have been clicked.

    I'm working on an interactive brief, and I'm making slides where the user has to click the correct items and then a "Contine" or "Next" button appears so they can move to the next slide.  Any help out there?  I have been using Captivete but I do not have a lot of experience withthe Advanced Actions.  I'm sure this is a pretty simple solution for all you captivate Wizards out there.
    I'm using Captivate 5.5.
    Thanks for any help!
    heymattmann

    Hi Matt,
    Can you post some pictures of the Advanced Actions you're trying to use that aren't working? It might give people some ideas of specific ways to help you. It can be a bit frustrating to start out, since there's not a lot out there in Adobe's official stuff for Adobe Actions, but Lilybiri's blog really is a great resource.
    Others might do this differently, but for your scenario, I would create 3 similar Advanced Actions, each one assigned to execute On Success for a clickbox, and three Variables to keep track of whether or not the user has clicked a particular box. There's also your next button, which starts out hidden. Make sure to name it something like NextButton so you can find it easily in the dropdown box when making your Advanced Actions.
    So I might name the actions and variables: actionClickBox1, actionClickBox2, actionClickBox3, and varClickBox1, varClickBox2, varClickBox3 (when you create the variables, set their default values to 0). You can call them whatever you want, just don't reuse names anywhere else-- you will run into problems.
    The idea behind the actions is that each time the user clicks a box, you change the variable for that box to keep track of the fact that it has been clicked. That part you were on the right track for. The next part of the action then checks to see if all the clickboxes have been clicked (aka, if all the variables have been changed from their original values to the new one). If they are, it shows a next button. If not, it does nothing.
    From what you said, I think you were trying to add an Advanced Action to show the next button to the next button itself. This would only execute when the user clicks that button, which makes it impossible-- you'd have to click the next button in order to show the button so that you can click it... oh dear. The decision of whether or not to show the next button needs to be part of the clickbox actions, so that upon clicking the third and final box, the next button will pop up. Because it makes this decision (to show or not to show) on each clickbox, the order you click them in doesn't matter. It will only show the next button once all the variables have been changed.
    You will see that the actions are all very similar, except for the variable that they change:
    actionClickBox1
    first tab in the conditional action:
         if varClickBox1 is equal to 0 <-- default value of variables must be 0
         then assign varClickBox1 with 1 
    second tab in the conditional action:
         if varClickBox1 is equal to 1 AND
         if varClickBox2 is equal to 1 AND
         if varClickBox3 is equal to 1
         then show NextButton
    actionClickBox2
    first tab in the conditional action:
         if varClickBox2 is equal to 0
         then assign varClickBox2 with 1
    second tab in the conditional action:
         if varClickBox1 is equal to 1 AND
         if varClickBox2 is equal to 1 AND
         if varClickBox3 is equal to 1
         then show NextButton
    actionClickBox3
    first tab in the conditional action:
         if varClickBox3 is equal to 0
         then assign varClickBox3 with 1
    second tab in the conditional action:
         if varClickBox1 is equal to 1 AND
         if varClickBox2 is equal to 1 AND
         if varClickBox3 is equal to 1
         then show NextButton
    Hint: If you set up one of these actions and save it, you can click a button in the top right hand corner to duplicate it and then just change the few things that are different to make the next action. It saves you from having to create it three times from scratch!
    Wow, this is long... I hope it isn't overwhelming in its length, and that it helps! Advanced Actions really are a cool feature once you get past their quirks...

  • Advanced action not working on slide end

    Hi,
    I am new to captivate.
    I am creating a toggle button. On clicking this button an image appear and disappear.
    It works fine if I click the button before captivate slider reaches to its end. Slider stops moving when I click.
    But if I try to click the same button after slider reaches to its end the button does not work.
    I am applying the advanced action.
    Pleae help me to resolve the issue.
    Regards,
    Anil Kumar Bakshi

    I just set up the same toggle action but I had mine slightly differently set up so that:
    If toggle == 0
    Assign toggle = 1
    Show img_1
    Else
    Assign toggle = 0
    Hide img_1
    This worked for me and clicking the button did not advance the slide timeline.
    Do you have Pause After X seconds selected for the button properties under Timing accordion?
    If your button is not pausing the slide and you allow the timeline to move beyond the button's active area (at the end of the slide or at the end of the button's duration on the timeline) then it will cease to work.

  • Can I use conditional and advanced actions on the same button?

    I'm fairly new to Captivate, but come from a background of flash and am struggling to use Captivate to do some things I would have expected to be fairly simple and a normal requirement.
    I want to create a screen with a number of interactive objects, in this case pictures, that the learner clicks on to display a piece of text.
    On clicking the next picture the first piece of text is hidden and a second piece shown.
    There are 6 pictures/buttons that need to work this way.
    However I also want to assess whether all the buttons have been used, as we have to force the user to view the entire slide before they continue.
    I can do the hide/show of text and buttons, and I've written a conditional action to check the variables for each button. However I don't know how/when to call this action.
    I was hoping that in my advanced action for each button I could add in a call to the conditional 'check variables' action, which would nicely fulfil this requirement, however this doesn't seem to be the case.
    I have also got animation/effects on the timeline before the images are on screen meaning I don't want to go back to the start of the timeline to use a 'on enter' event.
    I'm surprised this isn't something more people need as although it may be frowned upon out in the e-learning field, disabled navigation is frankly not going away and working for any large corporation will be a must.
    If anyone can shed some light on this, or maybe suggest a better approach then I would appreciate it.
    Thanks.

    Hi Lilybiri,
    Thank you for this, I suspected that this was going to be the way I would have to progress.
    I have to ask though, at present the company I work for uses a very straight forward off the shelf WYSIWYG elearning content designer.
    One of the core template pages is a hotspot page, which works in the way I have explained at the top.
    This is also one of the standard e-learning pages I have used in all my other positions, including when building in Flash.
    It seems incredible to me that to do such a simple, commonly used, page type we will require what is a fairly involved process rather than this being one of the page types or templates.
    I am currently trying to pilot Captivate to show how much better it is to the current product, however the other designers have no programming background and I think will stuggle with the conditional actions, meaning that this is pretty much going to be a no go which I'm gutted about...
    I think I stand a chance of teaching advanced actions but anything beyond that is unlikely initially.
    RodWard, thanks for your comments, I'm finding the actions ok in Captivate, as I say above I'm just amazed that this simple and commonly used page is so convoluted to create!
    My other frustration is the lack of control of the events, not being able to specify x and y for motions etc. but I'm finding work arounds...
    Is there a way to create my own page template? Could I write all the actions and bundle that into a page to provide the other designers so with some naming conventions they could use this functionality?
    Thanks for your help.
    Matt

  • Actions and Advanced Actions not working correctly. - Captivate 8

    In our project, we have it set so that after every section the student is asked three quiz questions (they are set on the default quiz slides.) On success, the person jumps to the next question slide. On failure, the person goes to next slide which has two buttons - one that allows them to simply move forward to the next quiz question and one that allows them to go back and review. The "Go back and Review" button takes the person back to the specific content slide that contains the answer to the question they are being asked. This button is set to advanced actions "Jump to Slide ..." and "Show Button..." - The button is a 'Return to Quiz' button to allows the person to find the answer then try the question again.  I know that the buttons on the default quiz slides cannot be programmed to do a specific action, but every time we click 'Submit' it seems fine until we click 'Next' to move ahead, it then routes us back to one of the content slides (Slide 7) instead of the next slide (if wrong), or the next question slide (if right). I have looked at the Advanced Interactions Window and there is nothing linking this slide to anything. I have not had this problem with any of our other modules or sections. I have tried creating new question slides and it did not work. I deleted Slide 7 and it worked fine the first time through the preview, but then when I viewed the preview again, it started jumping back and would not even let me get to the questions. Can anyone help?

    Normally the Next button on a question slide is not needed, because it has the functionality of Skipping the question. It is however needed if you want to allow Review.
    Another explanation is that you did change the normal work flow for a question slide, where a two-step process for submitting will take automatically the user to the next slide.
    Question Question Slides in Captivate - Captivate blog
    What did you do to need the Next button? If the user submits:
    Feedback appears with the indication to press Y or to click on the slide, happens at the pausing point of the Question slide (default is 1.5secs)
    When user presses Y or clicks, the actions Success/Last Attempt are executed if all attempts are exhausted, and you have only 1 attempt on Question level: the actions are by default Continue, but you can change it to 'Go to Next Slide' to shorten the waiting time (or drag the pausing point closer to the end of the slide).
    What did you change?

  • Can advanced actions be applied to animations, images etc??

    When messing around with Cap 4 last week, I was sure I saw a
    function that would make it possible to apply an advanced action to
    an image or animation. Now I simply can't find it and I am
    questioning whether I saw it in the first place and that it was
    possibly a dream of what I wanted Cap 4 to have.
    Can anyone help me?????
    Regards,
    Ryan

    Hi Ryan,
    You can show / hide objects using the Show and Hide actions
    that are part of the Standard Actions. Choose Project >
    Actions.... When the Action Dialog appears click on the Advanced
    Actions tab. Next, from the Edit / Create Actions menu choose
    Create a new action... Now double-click on Add Statement, from the
    menu that now appears, choose either Show or Hide and then select
    the object you want to show or hide.
    Once you have created and saved your Action. You could then
    apply this to say a button.To do this you would simply create a new
    button and from the on success Action menu of the button dialog,
    you would select Execute advanced action and then select the action
    you just created.
    If you wanted to hide multiple objects. You could choose
    Multiple Actions (from the on success) menu. Clicking the "..."
    button will display the Set Advanced Actions dialog. Selecting say
    Hide would then display all the objects on the current slide. From
    this dialog you can then select each of the objects you want to
    hide and then click the Add button. Clicking OK twice to dismiss
    both the dialogs and then previewing the project will then enable
    you to test out the hide functionality.
    Actions are a fantastic addition to Adobe Captivate 4 and
    although they might take a little getting used are definitely worth
    preserving with.
    Best - Mark

  • Captivate 8 advanced actions not saving

    I just upgraded to Captivate 8 today and was attempting to create a conditional advanced action.  However when I save the action, it doesn't save so the action remains blank.  The advanced action was on click, image disappears, and user jumps to a different slide.  Like Jeopardy.  They answer the question and come back to a main screen where the original link image disappears.  Why won't it save?

    I don't think that's it.  I put together the scrip (which is a simple one, only 3 lines) and click "Save Action."  The save action button doesn't grey out or anything.  Then when I try to move to a different AA it asks if I want to save before leaving.  If I say yes, it says an AA with that name is already created.  But when I go to open the original script, it's blank.  I've tried renaming things, selecting different items, and am getting nowhere.  It's the craziest thing!

  • Advanced actions not working in project preview or publish

    I have a project with advanced actions which work fine in single slide preview but which don't work at all in project preview or when I publish.  To make it even worse a slide on the same project I did earlier works ok when previewed.  Very confused!  Any suggestions?  I have used the force publish option and all the timelines look the same as the successful slide as far as I can see so I have no idea.

    Hi Lilybiri,
    sorry for the delay in replying, I've been tied up elsewhere.  I'm using CP7.  My advanced action is simply meant to show one image after another on click of a button.  It works perfectly for the first instance and then doesn't for the next two.  The only difference between the slides is that the latter two have the images stacked on top of each other whereas the first slide has the images placed separately on the slide.  This is the advanced action for the first slide:
    The decisions just refer to the images.  And this is the timeline:
    Compared to one of the slides that doesn't work (no images appear)
    where again the decisions are just referrring to showing images, and the timeline for this slide:
    As I said they both look the same to me apart from the layering of images on the second slide. Any help much appreciated!

  • Advanced Actions not Working

    I built a slide with some advanced actions (specifically, I execute an advanced action "On Success" of a button push).  The scripts seem to execute fine when I'm previewing the project within Captivate but, when I publish the project and upload the SWF file to the web, the actions don't fire.  I can hit the button all day and nothing happens.
    I'm sure there is an option or something I am overlooking but I just can't find it.  Any help here would be appreciated.  Also, I am publishing to Flash Player 10 (not sure if that makes a difference).

    This doesn't sound like a bad install issue. Don't be too quick to reinstall an app when the content is playing fine for other users.
    You say you're on IE9.  Have you checked into the settings on your browsers to see if popups are disabled or there are security restrictions on what IE deems to be "active content".
    Find another user nearby with IE8 and see if they can run your content.  Your issue may be something local to your machine.

  • Acrobat Pro 10 Actions Not Applying Fast Web View

    Acrobat Pro 10 actions are pretty useful overall, however they are not applying Fast Web View all the time. In my opinion, all PDFs generated today should be Fast Web View by default, but among the many applications which allow for PDF creation, not all apply Fast Web View for some reason.
    I did see http://forums.adobe.com/message/3335827for a potential band-aid fix. Unfortunately, it did not work for me.
    Here is the text from my Action sequence file:
    <</Commands [/c << /0 [/c <<  /Config [/c <<   /UIPolicy [/i 3]
    >>]
      /HandlerName [/a /FlattenOCGs]
      /Params [/c <<>>]
      /Title [/t ()]
    >>]
    /1 [/c <<  /Config [/c <<   /UIPolicy [/i 3]
    >>]
      /HandlerName [/a /ReduceFileSize]
      /Params [/c <<   /RFSCompatibility [/i 6]
    >>]
      /Title [/t (Reduce File Size)]
    >>]
    /2 [/c <<  /Config [/c <<   /UIPolicy [/i 3]
    >>]
      /HandlerName [/a /ExamineDocCmd]
      /Params [/c <<   /RmAnnots [/b false]
       /RmAttachments [/b false]
       /RmBookmarks [/b false]
       /RmDeletedContent [/b true]
       /RmFormFields [/b true]
       /RmHiddenLayers [/b true]
       /RmHiddenText [/b false]
       /RmLinksActionsJS [/b false]
       /RmMetadata [/b false]
       /RmOverlappingObjects [/b false]
       /RmSearchIndex [/b false]
    >>]
      /Title [/t (Remove Hidden Information)]
    >>]
    >>]
    /Input [/c << /FileVariation [/i 3]
    >>]
    /Output [/c << /AddToBaseName [/b false]
    /DontOverwrite [/b false]
    /EmbedIndex [/b false]
    /FileVariation [/i 2]
    /HandleOutput [/b true]
    /NumbericNaming [/b false]
    /OptimizePDF [/b true]
    /PresetName [/t (test2)]
    /RunPDFOptimizer [/b true]
    >>]
    >>
    As you can see, the "/OptimizePDF [/b true]" is set per the instructions in the aforementioned link. It still does not set Fast Web View all the time. I ran a test of the action on a batch of 10 PDFs, some were set to Fast Web View and some were not. While one of the PDFs that was not set to Fast Web View was open in Acrobat, I ran the same Action again and it did apply Fast Web View! I even installed the latest patch hoping that would fix it, but unfortunately it did not. Distiller does in fact set Fast Web View, but it won't work on PDFs. The only way I can find to guarantee the establishment of Fast Web View is to manually do a Save As on every file which I think is asking a bit much when you deal with hundreds of PDFs on any given day. Also that would effectively defeat the purpose of running an Action on hundreds of PDFs in the first place.
    Any ideas?

    There is a bug because of which fast web view is always disabled. While that is fixed, here the workaround. Save the action and open the .sequ file in Notepad. Change:
                    /OptimizePDF [/b false]
    to
                    /OptimizePDF [/b true]

  • Border styles not applied to buttons; buttons rendered incorrectly

    Hi,
    I'm fiddling about with the border styles in Designer. Though I can change the border style and color of a button, set its background-color and even apply round corners, none of them are rendered in the resulting pdf-file.
    This is how a fancy button, I designed for testing purposes, looks like in the 'body pages' tab:
    When I switch to the 'pdf preview' tab, the button looks like this:
    Neither were custom individual border colors rendered nor round corners. Background fill styles weren't rendered as well.
    The xml of the button:
    <field anchorType="bottomLeft" h="17.8202mm" name="instructions" w="46.9198mm" x="1.886972in" y="3.863361in">
    <ui>
    <button/>
    </ui>
    <font typeface="Myriad Pro"/>
    <caption>
    <value>
    <text>Instructions</text>
    </value>
    <para hAlign="center" vAlign="middle" spaceAbove="0pt" spaceBelow="0pt" textIndent="0pt" marginLeft="0pt" marginRight="0pt"/>
    <font typeface="Myriad Pro" size="12pt" baselineShift="0pt"/>
    </caption>
    <border hand="right">
    <edge thickness="1mm">
    <color value="192,192,192"/>
    </edge>
    <fill>
    <color value="255,229,128"/>
    </fill>
    <corner join="round" radius="3mm" thickness="1mm">
    <color value="192,192,192"/>
    </corner>
    <edge thickness="1mm">
    <color value="0,0,255"/>
    </edge>
    <edge thickness="1mm">
    <color value="0,0,255"/>
    </edge>
    <edge thickness="1mm">
    <color value="192,192,192"/>
    </edge>
    <corner join="round" radius="3mm" thickness="1mm">
    <color value="0,0,255"/>
    </corner>
    <corner join="round" radius="3mm" thickness="1mm">
    <color value="0,0,255"/>
    </corner>
    <corner join="round" radius="3mm" thickness="1mm">
    <color value="192,192,192"/>
    </corner>
    </border>
    <bind match="none"/>
    </field>
    Is it a bug or are the styles of buttons not allowed to be customized by design?
    I'm using Designer 7.1 and Acrobat 7.0.5.
    Regards,
    Steve

    I tried buttons with bevel/emboss and it work (indesign cs6 8.0.2). Yes there is a known issue
    related to effects applied to buttons will not appear in the exported file.
    https://dl.dropboxusercontent.com/u/72277778/buttons%20bevel.pdf

  • Over State and actions not working with buttons in Flash cs4

    Hi - I am working on a Flash file and some of the buttons in the document are not working.When I test the movie the hand cursor appears when I hover over the buttons they don't change colour (as specified in the over state) and the actions don't work. Not sure what is going on here as I created other buttons in the same document the same way and they work fine. Thanks in advance.

    If you remove the code from the buttons do they react properly to a mouse over interaction?
    What is the code that is in place?

  • HT1933 This article does not apply.  I have clicked on the link in the email to report a problem and it times out and says to many http redirects!

    I purchased simpsons donuts for 9.99, i have my receipt.  I have written the vendor every day for 7 days and of course you cant get through on their phone number.  I was on hold for 4hours and finally hung up.  I used my app card to buy the donuts, yeah stupid right.  Nevertheless, they stole 9.99 and will not refund my money or give me the donuts or respond to my support questions on this for 7 days.  I want this resolved this is bs.

    Well, sorry, there is nothing we can do for you here. This is a user to user forum - we are just users like you. You need to contact iTunes to see if they can help you, since the vendor doesn't seem to want to respond. Can't promise iTunes can do anything but it doesn't hurt to try:
    https://expresslane.apple.com/Issues.action
    Best of luck!
    Cheers,
    GB

  • Applying Standard Advanced Action to a Button Type

    Hi. Does anyone happen to know if it's possible to apply a Standard Advanced Action to a Button Type that will be used on multiple slides. My project has Home, Back and Next Buttons that I've used on most slides. I've created a Standard Advanced Action for these buttons, but haven't figured out how to apply the advanced action without going through each slide and selecting it from the very long list of Advanced Actions I have for the project. If anyone knows of an easier way to do this it would be very helpful for me. Thanks.
    Kim

    Kim,
    Which version do you use? In Captivate 6 this is possible if you use Shape buttons: you can put them on the Main master slide (or on individual master slides), or time for the rest of the project. Blogged about them:
    http://lilybiri.posterous.com/why-i-like-shape-buttons-captivate-6
    If you are on a previous version, I'm sorry but a normal button cannot be displayed for the rest of the project, nor put on a master slide. However there is a static button widget that has not as many functionalities, navigation however is possible, advanced actions not. Maybe that widget can help you, it is static which means that you can display it for the rest of the project (be sure to check the option 'Always on top') or even use it on a master slide.
    Depending on the exact content of your standard actions, maybe the action can be used without editing on each slide. Then it is just copy+paste work with regular buttons.
    Lilybiri

  • Why when i make changes to songs in my itunes library and then sync, the changes do not apply on my ipod?

    When i go to edit songs in my library, like changing the artists name or album, i then click sync and look on my ipod and the changes have not applied. I tried clicking the manage music manually box and to edit the songs manually from my ipod and still when i edit them and make changes on my actual ipod the songs are still the same. Any help?

    I have tried everything I have read on the Internet about sync issues and restore etc and not there isn't a single song on my iPad or iPod touch. All of the songs are listed in my iTunes but are all greyed out, some have the cloud symbol next to them but lots don't and some say waiting.
    Long and short is nothing will save to my devices at all.....HELP !!!!!!!?

Maybe you are looking for

  • Javamail to send message with a custom messageclass to outook exchange

    Hello, I developed a microsoft outlook addin which added a custom message class to our outlook exchange. Now if a user sends a message of type "IPM.Note.OurCustomForm"; the recipient gets our custom addin when the message is received. My question is,

  • How do you get your iphone out of recovery mode?

    I need help with my iphone. I'm trying to get the phone activated and restored but when it's almost done it shows an error. My phone is stuck in recovery mode. If there is anyone who can help me please message back.

  • Change color records report

    Hi, Is there a way to change the color of records based on a condition item? For example i want to change to red the records that have 'D' and to green those that have 'C'. 'C' and 'D' values come from the query from database column SIGN. thnks

  • OBIEE 11.1.1.6 External Security Issue

    I have setup MSAD in WebLogic successfully, however my issue is that no user can log in unless I assign their ID to BIAdministrator role. If I assign my ID to that role I can login. If I assign my ID to BIConsumer role it fails. I have the same setup

  • Function module to create Invoice from the Delivery no ?

    Hi All, Is there any way (function module) to create an Invoice from the Delivery no and the Billing Type ? We do not want to go with BDC for transaction VF01. Details: We want to generate a pro-forma invoice while saving the delivery. We will have '