Pause button requires 3 clicks to work

Greetings,
I'm using Captivate 3 and have noticed that on some projects (not all of them) the Pause button takes three clicks before it will Pause. The first time it changes the icon to Play, but doesn't stop the playhead or audio. The next click (on what is now the Play button), doesn't do anything except change the icon back to Pause. Finally, the third click does, in fact, pause the project.
This only happens on the initial use of the Pause button. Subsequent clicking of the button results in it working as intended.
I've tried it with default and custom skins and there is no difference. However, like I said, it doesn't happen all the time...you never know which project will be affected. And yes, I have tried emulating all of the settings from a working file on a non-working file with no luck.
Ideas?

Well, after much trial and error, I finally narrowed the problem down to slides with text entry boxes and/or buttons.
Here are my work-arounds:
Text Entry Box
1. On the timeline, find the pause element for each text entry field. Move the sliders all the way to the end of the slide’s timeline.
Note: ALL of the sliders on a slide must be moved or the pause button will still not work correctly.
2. Another way to do this is to change the ”Pause after” time setting on the Options tab for the Text Entry Box. Set it to the total time of slide display:
Buttons:
Open the Properties for the button. On the Options tab, deselect the “Pause after” checkbox.

Similar Messages

  • Play/Pause Button Captivate 3 not working properly

    I am using Captivate 3, but my play/pause button is not working properly. I can publish and upload to my LMS, but when I click the pause button the first time the mode changes but the project keeps playing. I have to click two more times and then it works. Can anyone offer any assistance? Thanks so much!

    Hello @Unit_27 ,
    Welcome to the HP Forums!
    Thank you for the information about your keyboard! I'll see what I can do to help
    I think it would be a good idea to take apart the keyboard, or some of it, to determine if the keys are obstructed somehow. Some information on the supported method of cleaning the keyboard is mentioned in this document: Cleaning your Notebook PC
    If this does not resolve the issue, I would reinstall Windows on the computer. The issue at this point would be software related, to some unknown extent. A recovery will address any software issue. First, make sure you backup everything you need to. Here is some information on how to do this: Backing Up Your Files
    Once this is done, it is safe to reinstall the computer. Here is some additional information on how to do this properly: Performing an HP System Recovery
    Please let me know if you have any other questions. Thanks and have a great day!
    Mario
    I worked on behalf of HP.

  • IOS 7.1 Upgrade - home button double click not working most of the time

    Hi,
    Not sure, if anyone else had encountered this issue after upgrading to iOS7.1.
    I am using iPhone5S 32 GB and it was working fine with home button (double click, mostly used to see & close other applications running in background) till I upgraded to iOS7.1. After iOS7.1 upgrade, most of the time, I am unable to see running applications. After trying for 4-5 times, I managed to see running application
    Is there any fix or workaround for this issue?

    Settings > General > Accessibility > Home-Click Speed - Change from Default to Slow

  • Sometimes my play and pause button(F8) is not working.

    I don't know why, sometimes the button of play and pause button is not working why?
    do you have any advice or do you think is broken??

    Try resetting the PRAM (if you are able to do so).
    Otherwise, I would take it in for diagnosis.
    Barry

  • Pavilion G7-1070us play/ pause button on keyboard not working

    My pavilion G7 has been a great computer for me but now it has started to experience a problem. The Play/pause button on the keyboard (f7 key) does not play or pause the music.
    I have the pavilion G7-1070us with windows 7. 
    Please help

    Hello @Unit_27 ,
    Welcome to the HP Forums!
    Thank you for the information about your keyboard! I'll see what I can do to help
    I think it would be a good idea to take apart the keyboard, or some of it, to determine if the keys are obstructed somehow. Some information on the supported method of cleaning the keyboard is mentioned in this document: Cleaning your Notebook PC
    If this does not resolve the issue, I would reinstall Windows on the computer. The issue at this point would be software related, to some unknown extent. A recovery will address any software issue. First, make sure you backup everything you need to. Here is some information on how to do this: Backing Up Your Files
    Once this is done, it is safe to reinstall the computer. Here is some additional information on how to do this properly: Performing an HP System Recovery
    Please let me know if you have any other questions. Thanks and have a great day!
    Mario
    I worked on behalf of HP.

  • Shortcut on Quiz Submit button make "click" not work! CP8 - HELP

    Can someone help me out here?
    Okay, I have a few quiz questions. If I have not shortcut on the submit button, it works just fine. If I put "Enter" on the submit button, I cannot click it. Yes, Allow Mouse Clicks is checked.
    I would like my users to be able to press enter or click.
    Running cp8 on win 8.1. Tried in preview mode, as well as published in IE and Chrome.
    Feels like I'm losing my mind! I have also tried with accessibility enabled and not. Not that it should make a difference, but I tried it.
    Thanks for any insight gang,
    Lori

    Looks like I have fallen victim to the transparent button again.  When I switch the quiz buttons to text or image, the shortcuts on them work just fine. Then they are transparent I have issues.  The nice thing about transparent is that you can color them. Because you can't use smartshapes as actual quiz buttons (submit, etc) at least not that I'm aware of, I have had to place a smart shape on the masterslide and overlay a text button with "make transparent" selected on top to make my buttons look AND behave correctly. Adobe is now aware of the issue.
    -- Lori

  • Glitch in pause button code

    Hello I'm a designer by trade & having difficulty getting my head around scripting. For most of what I'm doing, I'm managing to get by modifying snippetts that I've found online. However, one spot where I'm now stuck is making a pause button work for streaming mp3 files. I should qualify that adding the pause button was an after thought that I now realise is essential to the project working properly. The mp3 needs to start playing as soon as it starts downloading which is working fine. The mp3 needs to stop when the user goes to the next or the previous page, which is also working fine. But when the pause button is clicked first time, nothing happens. When it's clicked a second time, another instance of the mp3 starts playing. The pause and stop buttons work on this second instance, but not the first. I'm sure there's something really straight forward that I'm missing here, but I need a hand to find it. Following is the script as it now stands. Any help would be greatly appreciated.
    import flash.media.Sound;
    import flash.media.SoundLoaderContext;
    import flash.net.URLRequest;
    import flash.events.MouseEvent;
    var s2:Sound = new Sound();
    var req2:URLRequest = new URLRequest("intro2.mp3");
    var context2:SoundLoaderContext = new SoundLoaderContext(8000, true);
    var isPlaying:Boolean = new Boolean();
    var pausePosition:Number = new Number();
    s2.load(req2, context2);
    s2.addEventListener(Event.COMPLETE, onComplete, false, 0, true);
    var soundchannels2:SoundChannel = s2.play();
    //isplaying = true;
    BackBut.addEventListener(MouseEvent.CLICK, f3_ClickToStopAllSounds);
    controller.addEventListener(MouseEvent.MOUSE_DOWN, btnPressController, false, 0, true);
    stop_btn.addEventListener(MouseEvent.MOUSE_DOWN, btnPressStop, false, 0, true);
    function onComplete(evt:Event):void
    //Play loaded sound
    soundchannels2 = s2.play();
    isPlaying = true;
    function btnPressController(evt:MouseEvent):void
    switch(isPlaying)
    case true: controller.gotoAndStop(2);
    pausePosition = soundchannels2.position;
    soundchannels2.stop();
    isPlaying = false; break;
    case false: controller.gotoAndStop(1);
    soundchannels2 = s2.play(pausePosition);
    isPlaying = true; break;
    function btnPressStop(evt:MouseEvent):void
    { pausePosition = 0;
    soundchannels2.stop();
    controller.gotoAndStop(2);
    isPlaying = false;
    function f3_ClickToStopAllSounds(event:MouseEvent):void
    SoundMixer.stopAll();
    soundchannels2.addEventListener(Event.SOUND_COMPLE TE, s2Complete);
    function s2Complete(e:Event)
    this.nextFrame();
    stop();
    BackBut.addEventListener(MouseEvent.CLICK, goback);
    function goback(event:MouseEvent):void
    prevFrame();
    stop();

    Problem solved!!
    After much experimentation, I tried changing "switch(isPlaying)" to "switch(!isPlaying)" & much to my surprise (and great relief) it worked!

  • I have a IPOD classic late 2009 160gb ... Only my play/pause buttons doesn't work ? Do I need to replace the click wheel ?

    I have a IPOD classic late 2009 160gb ... Only my play/pause buttons doesn't work ? Do I need to replace the click wheel ?
    May try DIY due to cost
    Just wondering if anyone's had this fixed how much it costs
    Or if it's another problem before I order parts

    I have found the solution for myself for the above.  I use a specific scripting program which is accessed by Control A. To pause it, you need to use Control B. not sure if this would work for any other application but it resolves my dilemma after hours of trying!

  • Is it possible to have multiple pause the require view to click "continue" button to proceed?

    Is it possible to have multiple pauses the require view to click "continue" button to proceed?

    1. Turn the video into a symbol.
    2. Set stage, symbol and video to not autoplay.
    3. Set play in the video playback at the start of the video timeline.
    4. Set pause in the video playback at the prefered time on symbol timeline.
    Once I convert it to a symbol , the pause funtion is not showing on playback.
    5. Zoom in as much as you can on symbol timeline and set trigger "stop all" for the symbol right after the pause playback marking.
    6. Set play in the video playback right after the "stop all trigger" marking.
    7. Create button with action play symbol.
    You can now play a video which will stop at a pre set pause, and make it countinue to run by clicking the play button again.

  • 30GB Play/Pause button won't work.

    Yes, another iPod Classic's play/pause button is messed up. I got it in March '09 so I believe that's over the 90 day fixing range. I've tried resetting, holding the menu & center button, & all of the suggestions on the Mac site, but it still won't work.
    Any ideas what could be wrong & how to fix it?

    Besides resetting the iPod, have you attempted restoring it? You can do that by clicking the "Restore" button on the the iPod's Summary page in iTunes.
    Assuming that doesn't work, you can check your [warranty status|https://selfsolve.apple.com/GetWarranty.do] to see if you are still covered for hardware repair. I doubt any 30GB iPods are still under warranty, since they were discontinued over two years ago, but you said you got it in March 2009 - did you purchase it used?
    Whether it's under warranty or not, you can always make a Genius Bar appointment at your closest Apple Store and see if they have any other suggestions, free of charge. If it's a hardware problem, they can replace the iPod for you, but there would be a charge to do so if you're out of warranty.
    Shawn

  • Get Accept & Reject Buttons only on click of work item in sap inbox

    Hi,
    ALL
    I have a issue.
    I have created a form in module pool which has a certain set of feilds. I have placed two buttons in the form namely " Submit " & Update. When ever the submit button is clicked in the form the form which is an attachment goes to the respective approvers for approval.
    Issue : I have not placed any Accept or Reject Buttons in the form, I want these buttons to get displayed when the form is displayed in the SAP inbox of the user.
    I am not aware of the process, that how the Accept & Reject buttons appear when the form is used for approvals in the workflow.
    Can any one suggest me the process, that how do i use these buttons while displaying when the work item is clicked in the users inbox but not when the form is intially filled.
      - The approval or Reject buttons should not get displayed when the user is initially filling up the form.
    -  The Approval or Reject Buttons should be displayed when the work item is clicked in the sap inbox of the user, instead of update & Submit.
    On click of the work item - the accept & Reject buttons should be displayed but not the Update & Submit and this should be displayed only when the work item is clicked.
    Kindly suggest me the way how to get that ..if possible some peice of  code would also be good.
    Expecting an earlier reply !
    shankar

    Hi Shanky,
    You can create two module pool programs for requirement.
    One is for trigger the workflow and other one is to get the approval.
    For the approval, create a dialog method and call the screen using call transaction.
    So at run time when the user clicks the work item it will display the Approver screen. under Approve or Reject button you have to call the function module, SAP_WAPI_COMPLETE_WORKITEM to complete the work item.
    Thanks,
    Viji.

  • Pause using Button or Click Box?

    I have been trying to get a slide to pause in the middle
    using buttons or click boxes. I can get the slide animation to
    pause but the audio continues.
    The only way I have found that works is to do considerable
    editing to split the slide into two and make the button/box timing
    end up at the end of the slide. This is a real pain. I have been
    setting the "pause after" property in the button/box and it would
    seem this should be a basic Captivate function but I cannot figure
    it out. Please help!

    Hi again
    You said:
    It just seems like the capability to pause a slide and give the
    option to restart via a button/box should be basic for this program
    and I must be missing something.
    Yes, the capability is there. The Click Box or Button do that
    now. Your particular issue is with audio. One thing you can do is
    break the audio into chunks. Maybe even assign to objects such as
    Captions.
    You should also consider submitting a Wish Form alerting the
    development team that a new option would be welcome. The option to
    pause audio as well if pausing the slide using a Click Box or
    Button object.
    Click
    here to view the WishForm/Bug Reporting Form
    Cheers... Rick

  • Mouse requires multi click to work on envy 23

    My envy 23 mouse is wireless but when I use it the left button requires multi click to work most of the time where a single click when you touvh something is all that is normally needed.  It is as if there is no communication between the mouse and the computer however the light on the dongle is operating showing it is talking to the computer when I click.  Any ideas for solving this please?

    Hi..
    Try to re sync your wireless mouse to the pc.
    How to sync you mouse -- remove the wireless reciever from the usb slot. >> plugg it back and hold the connect button for 10- 15 secs..
    If this does not help then try the usb reciever on a different usb slot and resync your mouse..
    Also try with a fresh set of batteries for your mouse..
    If this does not help then you need a new mouse.. this can a physical problem with the mouse..
    Clicking Kudos! Is a nice way to say Thank You if this helped you or resolved your problem. Also " Accept It As A Solution" so that others get a benefit from it..
    - Aves..

  • Play/pause button won't work

    Ipod Classic 80Gb
    Play/pause button won't work 9/10 times.
    Any idea on how to fix that?

    Besides resetting the iPod, have you attempted restoring it? You can do that by clicking the "Restore" button on the the iPod's Summary page in iTunes.
    Assuming that doesn't work, you can check your [warranty status|https://selfsolve.apple.com/GetWarranty.do] to see if you are still covered for hardware repair. I doubt any 30GB iPods are still under warranty, since they were discontinued over two years ago, but you said you got it in March 2009 - did you purchase it used?
    Whether it's under warranty or not, you can always make a Genius Bar appointment at your closest Apple Store and see if they have any other suggestions, free of charge. If it's a hardware problem, they can replace the iPod for you, but there would be a charge to do so if you're out of warranty.
    Shawn

  • Captivate 2.0 Play/Pause button Not Working

    Hi,
    We are facing a problem in captivate 2.0 file. Due to some
    reason the play/pause button isn’t working in the captivate
    file. There are few links on a particular screen which goes to
    respective slides in the captivate file. Once the learner jumped on
    a respective screen then the Play/Pause button is not working. Even
    though I keep on clicking the Play/Pause button the Audio is not
    stopping, it keeps on playing. When we click thrice on the
    Play/Pause button, then the Audio stops.
    Could you please help me in resolving this issue?
    Thanks in Advance.
    Ajit Danve
    Sr. Programmer
    Aptara, Pune.

    Exact same thing is happening to mine. It's a conspiracy so we'll all have to buy a new piece of ipod tech. I've been happy with it so far, but now it is just like a pack of gum, but less chewy and no tasty goodness.

Maybe you are looking for

  • Droid Razr freezes EVERY TIME I do anything...ongoing problem for 9 months!

    My Droid freezes every day. It has done this since I got it "new" under my warranty when the previous TWO phones of the same model did the exact same thing. They all freeze up daily. I usually cannot even answer the phone or make calls. Checking emai

  • Message Mapping Doubt

    Hi Experts, Im stuck up with a message mapping issue. Need your advice if I can handle this in message mapping or should I changed the FCC. FILE to RFC scenario. Input file sample. 1|OPENED|153-01-19|T001|005151|0237|20100705|17:35:55|001     |201007

  • Yakuake acting weird after system update

    After a #pacman -Syu, yakuake gave me this problem: It was working without problems before this update. I'm using the latest xorg and nvidia-drivers (vga is a GeForce4 mx 4000). My xorg.conf: # nvidia-xconfig: X configuration file generated by nvidia

  • I am having error while viewing rules of Engagement post.

    HI Team, I am getting an error while trying to access Rules of SCN Engagement Post Can you help me in resolving it. Thanks,

  • Changing Export Location when using Publish Services to Hard Drive?

    Hi, I am aware that typically when using publish services it is not possible to change the export location once it has been set. This has put me in a very precarious situation; let me explain. I work for a distribution company that sells 15+ product