Captivate 6: why is my button play/pause of slide not getting along with my PREVIOUS slide button?

I use a BACK button on slides that I built with advanced actions and a play/pause of slide button that I built with stocks advanced on every slide in my project. They work all - except if you click pause, then play, then play again. The slide will play again, but the pause button will no longer work. Let me know if you have any ideas on this problem.

Thank you
Brad

I had finally found it! For someone else, who runs into this problem:

Use a transparent button (on your images of two buttons) and set its conditional action as follows:

IF

Perform the action if all the conditions are met

cpCmndResume is equal to 1

cpCmndPause is equal to 0

Actions

Assign the cpCmndResume with 0

Assign the cpCmndPause with 1

See the PlayBTN (that you have created and appointed beforehand)

Hide PauseBTN (that you have created and appointed beforehand)

ON THE OTHER

Assign the cpCmndResume with 1

Assign the cpCmndPause with 0

See the PauseBTN

Hide PlayBTN

In this way, if you have a replay of slide in the slide button, your pause/play toggle work after clicking to reread your slide.

Tags: Adobe Captivate

Similar Questions

  • Button play/pause of slide show?

    I'm just starting to learn actionscript so I don't really know what I'm doing!

    I'm looking to make a button that will play or pause the slideshow of my photos. So it will basically just start and stop of the movement to the bottom of the timeline, I suppose that... Problem is, playback / pause will perform two different tasks and look like two different buttons. So I need to know how I can make the button and its actions change like above. Here is my very raw solution, using the actionscript tad bit, I think I could possibly know...

    Another problem... my order full screen works in a web browser?


    EDIT: Also, I want the variable for playButtonActive or pauseButtonActive to change when the button is clicked. Do you understand what I'm doing... Sorry for my lack of knowledge.

    Make 2 buttons, one for the break and one for the game. Make the same exact dimensions and place the Play button on top of the Pause button (same coordinates x and y). They already have instanceNames by your code.

    Code:

    myPauseButton.onPress = function() {}
    myPlayButton._visible = true;
    Stop();
    }

    myPlayButton.onPress = function() {}
    myPlayButton._visible = false;
    Play();
    }

    OR, if you want the buttons pause and play separate on screen (both still visible);

    myPauseButton.onPress = function() {}
    myPlayButton.enabled = true;
    myPauseButton.enabled = false;
    Stop();
    }

    myPlayButton.onPress = function() {}
    myPlayButton.enabled = false;
    myPauseButton.enabled = true;
    Play();
    }

    Full screen can run in the browser, I have never needed to do it, though, so I'm not sure if a simple fscommand works, or if you need things as well.

  • Music guard play/pause randomly and keep Siri activation with Apple earbuds in

    So about a month ago I bought a pair of new headphones from Apple at the Apple Store, they worked very well until last week, they kept turning on my music and stop randomly and activation of Siri. First is was not often, but now if that happens constantly, and it's really got on my nerves. I was looking through all the discussions, but they have had the problem with the Apple earbuds No. This is never happen to me before with the other Apple hear buds I've owned. I think I might have just gotten a lemon but I really want to go buy another pair.

    Accessories Apple are guaranteed for one year from their date of purchase, even if purchased separately from the iPhone, which in this case, they follow the warranty period of the iPhone. Feel free to contact Apple for support and service - Apple supported. You can either an appointment at the Genius Bar on your headphones or have them be replaced by express delivery by putting in place the replacement telephone. It seems as if the remote party on your helmet is somehow physically stuck inside that controls everything you described and it continues only when the headphones are connected. They will be able to set you up with a replacement, free of any cost to you as long as your helmet were not thrown or clearly abused.

  • Why can't I choose a specific program to get outdoors with the file.

    I save my first projects pro adobe in a folder called projects.  I use to be able to open the file, click on a project and it would open in first pro.  Now, for some reason any the only program I try to open the project with is photoshop.  It will not open a project first pro.  I clicked on open with and chose the first pro to open project files, but the computer won't let me choose first pro.  He just kept photoshop outdoor with the file.

    ... but the computer won't let me choose first pro.  He just kept photoshop outdoor with the file.

    Please provide details...

    is first Pro in the list to open it with?

    If it is not on the list, use this tutorial to add it to the list:

    http://www.Vistax64.com/tutorials/126340-open-add-program.html

  • Control edge file animate OAM with the buttons play/pause of Captivate on the skin.

    Hello world

    I worked on a project where I mix a variety of objects and animations.  I do animations animate on board.  The problem I have is that when the user clicks the button pause on the Captivate playback controls, the oam file do not pause.  I found descriptions of how I can make an animation to play/pause the Captivate timeline button on board, but I can't find anything on the use of the Captivate pause button to control the Edge file animate.  Discussions only that I managed to find on that seem to be the answer.  Someone had a bit of luck with this question?

    Any advice would be appreciated.

    Thank you

    Randy

    OK, it's a bit hacky, but it works quite to control the main timeline object in a file of edge of Cape Town, where the Edge file has been imported to Cap 9 as a Web (oam) object. I went seeking answers same like you and came from vacuum, then start to tinker myself and came across the following method.

    Let's use window.postMessage to send a string between Cape document window and document edge iframe window then react accordingly. You can learn more about postMessage accepted battery answer here: http://stackoverflow.com/questions/3076414/ways-to-circumvent-the-same-origin-policy

    In your dashboard file click the support of Actions for the stage object in the timeline and select the compositionReady event. Paste this code into the text window:

    addEventListener for Chrome, attachEvent for IE

    window.addEventListener ('message', receivedFromCaptivate, false);

    window.attachEvent ('onmessage', receivedFromCaptivate);

    function receivedFromCaptivate (event) {}

    switch (event.data) {}

    case "play":

    SYM. Play();

    break;

    case "pause":

    SYM. Stop();

    break;

    }

    }

    Save the file and publish it as an oam, then import the OLS in a slide of Cap, as you normally would. Now, to put in place things of the CAP. Here is a visual aid for the rest of the explanation...

    In the PAC file select the control that you use to start playing the chronology of the edge (in the example above the "slide4Play"), select the checkbox 'Use as button' in the properties on the right, select the "Actions" tab, then to the drop-down list for 'Success' choose "Execute advanced Actions." Click the folder next to the selection of Script control and advanced Actions dialog box should appear. Name your action something (for example, "playEdgeSlide4"), then click the 'Add' in the grey bar to add a new action in the queue. In the drop down "Select Action"... ", choose"execute Javascript. "In the drop down menu"select the window... ". ", choose"current ". Then click on the 'Script_Window' button to bring up a window of text Javascript crap. In this window, you can paste this:

    try {}

    $("iframe") [0].contentWindow.postMessage ("play", "*");

    } catch (e) {}

    Console.log (e.message);

    }

    Select 'OK' to close the window of text Javascript crap, then click the 'Update Action' button to save your new action. Now let's do the same for break action - select the control that you use to pause, go through the steps above, the name of the action, implement advanced action in the same way and in the Javascript crap text window, paste the following text:

    try {}

    $("iframe") [0].contentWindow.postMessage ("break", "*");

    } catch (e) {}

    Console.log (e.message);

    }

    Cap incorporates the Edge file in an iframe on the page that has its own document window. In order to communicate between base ceiling windows and the iframe, we use the postMessage call. So when you hit your button Pause/Play in Cape Town, he publishes an event to the function that gets recorded in the iframe on board. And in the event.data is the string we send above the Cap base window in the function postMessage ('play' or 'pause'). We use a simple switch to react to the data string, stop or have fun with the main symbol of the scene at the edge (sym.play(1000) (), sym.stop ()).

    I hope this helps!

  • Custom button play/pause break drag-and - d├⌐poser? Captivate 9

    Hello

    I'm working on a sensitive project and everything was fine.

    But after I created a play/pause button custom fiscal drag - d├⌐poser has stopped working. The moveable objects appear but they can´t be dragged / cursor doesn´t change.

    Advanced reading action button simply checks to see if the project is paused (by changing the image on the play button) or else (change the button to another State and continuation of the project).

    How could this advanced break action slide it / move?

    Thanks for any help!

    A user variable must be created. You can give it a default value of 0 on creation. For the rest, you just use the same way you used the other buttons to toggle. For a user variable that it is you who decide what values it may have, you can set it is a Boolean value, but if you use the toggle command, it will automatically change the value of 1 if it is 0, or 0 if it is 1.

    You have seen the conditional action (Toggler) in this article.

    Most of the books and (certainly) Lynda tutorials are quite limited, sorry to say.

  • Satellite E100-004 - can I disable media buttons as mute, play pause

    My laptop is Toshiba Satellite E100-004.
    is there a way disable the multimedia button panel (Media buttons on top of keyboard - mute-media-play/pause-stop-rewind-forward-)?

    thanx

    Hello

    Please don't be crazy on my but I don't understand your question. These buttons are by default configured to run with pre-installed Windows media player. If you don't like them you just simply do not touch them.
    I know that you can change the browser settings and the multimedia key and define which application should be open with these buttons.

    In any case such option is unknown to me.
    Why you want to disable these buttons?

  • Central Play/Pause button

    Is it possible to have a button Play/Pause 'Central' in Captivate?  I have inserted a 4 and 5, the video files in Captivate and either have selected "Autoplay" or leave the control to the end user in the skin.  However, when only the user presses pause on the Captivate PlayBar video file will continue to play if I select "Autoplay".  If I do not select 'Autoplay' there are two play/pause buttons (control the video file and the other all the captivate project)... is there a way to combine these two into one central play/pause button play/pause buttons?

    It looks like that your videos have been inserted as videos of the event.  Seek to try inserting them as drag videos instead.  Then you lose skin on the video, but the playback for all of the module bar will pause the videos as well.

  • Is it possible to change the link to the WMP to Play/Pause/Stop buttons

    Is it possible to change the link to the WMP to play/Pause and the Stop button?
    Because network alone and media buttons can be changed by the software.
    And I'd rather not WMP for my favorite media player.

    Unfortunately, the buttons are configured with WMP (if the CD is inserted) and WinDVD (if the DVD is inserted).
    I guess that you can not use buttons with 3rd party applications.

  • Satellite L20: Play / Pause button have no action

    Nice day!
    Sorry for my English. It is not very good. But I will try to describe a problem with my laptop. :)

    Then... Problem with media - Play/Pause button.
    All other buttons (back, forward, stop) are working properly.
    But the Play/Pause button just launch Windows Media Player 11, when I press it.
    But do not play or pause in the drive. Button Stop Stop playback in the drive, return buttons and next to work according to its tasks. Only the button Play/pause have NO effect in the reader.

    What is the problem in?
    Can I count your s help?

    Thanks for the eyes on my problem. :)

    He s strange because usually utility Toshiba controls control media buttons.
    But this tool is not available on the page of the Toshiba driver

    Have you received the CD tools & utilities?
    Are there any programs or tools called controls buttons or something like that? Install it!

  • Satellite A300 - controls (ie. mute, play/pause) button will not work

    Satellite A300 controls buttons on my laptop reasonably new (ie. mute, play/pause buttons) are only half lit and non-responsive my ironing to.

    They use to work when I got the laptop but suddenly, they stopped. You use to be able to drag your finger across the buttons and they melted, then fade in. Now all look as if are to halfway between the gradual estrangement and are stuck there permanantly.

    Hello!

    Using Windows Vista?

    If so, you should try to reinstall the Toshiba value added Package. You can download the Toshiba site:
    http://EU.computers.Toshiba-Europe.com-online decision-making supported Downloads & => Download drivers

    If you have downloaded the new VAP first remove the old version and restart the laptop. Then install new version and reboot once again.

    Good bye

  • Satellite A200-1AG: can use the play, pause buttons with other software?

    Hey

    I have question about my satellite A200-1AG.
    It's as well as the power button some other which are assigned to media player.
    Can I reprogrammed in some way to the music of change/play/stop/skip with the buttons?

    I never use media center, I know it is asigned a deflaut with the toshiba Vista Home recovery disk, but I just use winamp

    Is there a solution?

    No, as far as I know you cannot reconfigure the keys like play, pause, stop, etc.
    They can be used only with WMP (windows media, media center player)

  • Is it possible to change the function of the buttons play/Pause on Satellite P100-347

    Hello.

    I would like to would like to know if there is a way to change the play / pause button on my phone to stop the opening of windows media Center. I like to use itunes to listen to my music and the other buttons (back, forward and stop), all work with other programs, but there is no way to use the play and pause function without opening of the Media Center.

    It seems that you can only change the internet and function of CD/DVD in the Panel.
    Thanks in advance.

    Hello

    Just reply: no, not possible to change playback / pause feature keys s

    The Toshiba control utility offers two options.
    It allows you to assign and select a program for the internet button and touch CD/DVD.

  • SBH20 play/pause, next, previous buttons do work (Xperia Z3)

    Hello. I bought SBH20 but play, pause, next, previous buttons do not work. Volume buttons and the button play/pause for accept/reject calls work. I use it with a connection with Xperia Z3. Can U help me what could do? Do not want to withdraw. Thank you.

    After Lollipoped my Z3, it works fine. Probably, there was something with kitkat on my phone...

  • foobar2000 starts when you press the Play/Pause button on Sidewinder X 4 keyboard

    As the title suggests, the lance keyboard play/pause key the program foobar2000. No idea how to prevent this?

    It turns out that my Microsoft Mouse and keyboard Center not has not been entirely updated. I do not have the most recent version has caused some of the buttons to not work as expected.

    In any case, I found a solution to my problem - thank you for your help.

Maybe you are looking for

  • Re: CD/DVD of UJ - 822 b drive is not compatible with protégé M400-S4031

    Do you know if the UJ-822 b recommended is also compatible with my Toshiba protégé M400-S4031?If this is not the case, can you recommend one that will allow me to burn DVDs?

  • Constant blue screen with different messages (0 x 24 & 0x7B). Everything OK, but nothing works.

    System Setup: Dell Dimension E520250 GB, 2 GB of RAM, Core2Duo, WinXP Media Center diskette, DVD, DVD - RW (2 Bay), PCI graphics card, SATA opeartion = ON RAID in Bios (a single drive - Western Digital WDC WD2500JS). One night (three weeks ago, begin

  • Unable to connect to internet via WiFi

    Hello I am unable to connect WiFi with my laptop. It displays connected to the router but the Red (X) between the router and the network. In the system tray to allow brand yellow exclamatory sign wireless. I am able to connect using my cell phone & m

  • White Screentuns

    My screen is always turning white, no matter if I dump old files or not I have norton, so is not the problem, it looked about 2 days after I got this computer, it's a brand new computer

  • How to see files from SD card?

    I've saved some recording file in a directory "file:///store/home/user/record.amr" 4.2.1 JDE application Simulator 8703e/g. But how can I see the actual file through navigation?