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.

Tags: Adobe Captivate

Similar Questions

  • 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

  • play/pause button does not work

    I turned an old project (CC 2014) for 2015 of CC and the play pause button did not work, it is now the same for all my projects and it's very strange. Help me please

    bugt.PNG

    Hi pixelmatic,.

    It is more than likely due to changes in Premiere Pro audio engine. You can post a screenshot of your preferences > Audio Hardware Setup?

  • Play/Pause button

    I just spent my first Alienware of Toshiba laptop and I miss some functionality.

    My previous laptop was préattribués additional buttons like TactX™ and one of them was the Play/Pause button, who has worked for most of the players including Youtube and VLC. Is there a way to set one of the TactX buttons for this function?

    That will not be supported, but I usually use the space bar to play and pause.

  • How to set criteria for the Play/Pause buttons

    How to define conditional criteria to the Play/Pause buttons?

    that is to stop the animation only if the animation is playing. and to play the animation again that if the animation is paused. Thank you.

    on(release) {
    play();
    }

    on(release) {
    stop();
    }

    Here's where this variable isStopped you had in your other display might be practical if the intention is to have a button to do both...

    var isStopped:Boolean = false; assuming that it is playing at the beginning

    {We (Release)}

    {if (isStopped)}

    isStopped = false;

    Play();

    } else {}

    isStopped = true;

    Stop();

    }

    }

    But if you have separate buttons for Play / Pause, which showed you already would be sufficient when you match the two code pieces to the correct buttons.

  • 1-button Play/Pause button

    Hey there,

    Well, as the title says I need to create a Play/Pause button in one. So, when I click the button it plays my animation, and then when I click it again it stops it. And then when I click it it again plays the animation where he was. etc etc.

    I know how to create a simple button and give an event and a function, but I can't figure out how to meet these 2 functions in one?

    What I got so far as code:

    Stop();
    PauzePlayknop.addEventListener (MouseEvent.CLICK, mouseClick);
    function mouseClick(event:MouseEvent):void
    {
    Play();
    }

    I hope someone can help me out =)

    Greetings,

    Coyke

    Try something in the sense of:

    Stop();

    var playing: Boolean = false;

    PauzePlayknop.addEventListener (MouseEvent.CLICK, mouseClick);
    function mouseClick(event:MouseEvent):void
    {

    play =! play;
    {if (Playing)}

    Stop();

    } else {}

    Play();

    }
    }

  • The play/pause button States

    I am creating a video player customized for an ad and try to get the play/pause button to work properly. I did drag an instance of the button pause on the stage with the name of the instance 'pause_but' and inside this clip of film created a second image with the play button. Frame 1 contains an image tag "pausestate" and part 2 has the play with the image tag «playstate» button

    My code is:

    var nc:NetConnection = new NetConnection();
    NC. Connect ("rtmp://cp22943.edgefcs.net/ondemand");
    var ns:NetStream = new NetStream (nc);

    Buffer
    ns.setBufferTime (15);
    ns.onStatus = {function (info)}
    If (info.code == "NetStream.Buffer.Full") {}
    bufferClip._visible = false;
    }
    If (info.code == "NetStream.Buffer.Empty") {}
    bufferClip._visible = false;
    }
    }

    _root. Video.theVideo.attachVideo (NS);
    NS. Play("ads/rosenthalvideoad2");
    _Global.ifplaying = true;
    trace (ifplaying);


    Video controls
    rewind_but.onRelease = function() {}
    NS. Seek (0);
    }

    play_but.onRelease = function() {}
    NS. Play();
    }


    If (ifplaying = true) {}
    pause_but.onRelease = function() {}
    _root.pause_but.gotoAndStop ("playState");
    NS.pause ();
    ifplaying = false;
    trace (ifplaying);
    }
    }
    If (ifplaying = false) {}
    pause_but.onRelease = function() {}
    _root.pause_but.gotoAndStop ("pausestate");
    ifplaying = true;
    trace (ifplaying);
    }
    }


    MUTE button
    _root.createEmptyMovieClip ("vSound", _root.getNextHighestDepth ());
    vSound.attachAudio (ns);

    var so: Sound = new Sound (vSound);

    so.setVolume (100);

    mute_but. Press = function() {}
    If (SO.getVolume () == 100) {}
    this.gotoAndStop ("onOver");
    so.setVolume (0);
    }
    else {}
    this.gotoAndStop ("muteOver");
    so.setVolume (100);
    }
    }

    mute_but.onRollOut = function() {}
    If (SO.getVolume () == 100) {}
    this.gotoAndStop("on");
    }
    else {}
    this.gotoAndStop ("mute");
    }
    }

    mute.onRelease = function() {}
    If (SO.getVolume () == 100) {}
    so.setVolume (0);
    this.gotoAndStop ("muteOver");
    }
    else {}
    so.setVolume (100);
    this.gotoAndStop ("onOver");
    }
    }
    Stop();

    Can someone please try and help me solve this problem?

    Use this code to toggle:

  • 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)

  • 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.
  • 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.

  • 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.

  • FN + play/pause, previous + next is not working for windows media player

    I use windows media player.

    I use fn + play/pause button very useful for me.
    They have stopped working.
    I don't know how to bind the keys properly.
    Default keys are now Ctrl + P and Ctrl + Alt + Home

    Hello

    (1) did you make any changes before the show?

    (2) what is the brand and model of the keyboard?

    Method 1: Mouse, keypad, touchscreen and keyboard with Windows problems

    http://Windows.Microsoft.com/en-us/Windows/help/Mouse-touchpad-keyboard-problems-in-Windows#V1H=tab01

    Method 2: Some function keys or keyboard shortcuts do not work correctly on a computer that is running Windows 7

    http://support.Microsoft.com/kb/975741

    Reference: Solve unexpected function (F1 - F12) or other special key on a Microsoft keyboard behaviors

    http://support.Microsoft.com/kb/894513?WA=wsignin1.0

    Please report if you are still having the problem. I will be happy to provide you with the additional options that you can use to get the problem resolved.

  • How to find the flv player pause button event?

    Hi..................

    I want to check a Boolean value, whenever the pause button embedded in flv player. Any event play/pause button as _mc.addEventListener (MouseEvent.CLICK,pressed) ?

    Thanks in advance...

    Search in the online help for the pausedStateEntered event. Here is a code example:

    Import fl.video.FLVPlayback;

    Import fl.video.VideoEvent;

    playerInstanceName.addEventListener (VideoEvent.PAUSED_STATE_ENTERED, onPause);

    function onPause(event:VideoEvent):void {}

    trace ("HI");

    }

  • 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.

Maybe you are looking for

  • Modem wireless Qosmio and Alcatel speedtouch

    I tried to connect my laptop Qosmio with wireless speedtouch (DSL) modem, using the normal cable, it works perfectly. When I try to connect to the wireless network, the computer detects the wireless network, but it gives a warning message shows that

  • How to transfer pictures from computer to memory card

    memory card can u down load the images from your computer to a memory card?

  • Orphaned application modules during the uninstallation?

    I have an application that downloads the cod and installs using the CodeModuleManager class. But after that I deleted the application, the modules installed by it remain. Am I missing something here?  Modules should not be deleted as well?

  • new cases appeared in the drive

    Hello.. IAM using dell inspiron 15 3521i do not know how and why, the recyclebin and system volume information folders appeared recently in my e drive. they are empty and they persist even after deletion.what are these files? my pc is secure with mac

  • See exhibit items with errors?

    In APEX 4.2.6 (and or 5 that we would need to ensure its proper functioning after upgrade), is there an available view that provides a list of all the elements that contain validation errors associated with them please?  We owe this to use in a plugi