Using default CS5 skin, play/pause & stop buttons disabled until going fullscreen

We are using default CS5 skins with an flvplayback component built through action script 3.  When playing certain videos (and only certain videos, however there isn't yet a pattern), the play/pause, stop & seek buttons are completely unresponsive.  They don't change stats on hover & they are unclickable.
However, the fullscreen button does always work, and upon going fullscreen and coming back out, the buttons now work again.
I really have no idea what is going on here, it seems rather random.  So far, the problem was seemingly at its worst displaying a video that was encoded with Sorenson spark (an older codec) and we wondered if it had to do with the file itself, the headers, anything of that sort.  But the fact that the skin and buttons work fine once entering and exiting fullscreen - that is perplexing.

Just an update, but the following line:
my_FLVPlybk.scaleMode = "noScale";
Has something to do with the issue.  When we include this line (which tells the player to resize to the size of the given FLV), we get the problem with the buttons not working.  If we take the line out, we do not see that problem.

Similar Messages

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

    Is it possible to change the link to the WMP of the Play/Pause and Stop Button?
    Because by software only the Network and Media Buttons are changable.
    And I don't prefer WMP to be my favorite media player.

    I used to have this problem too. When pressing +play/pause+ button on my +Satellite+ always wmp start. I used RM-X media to configure media keys, or Global Hotkeys in Winamp to solve this problem, but in case of +play/pause+ it was still the same. I found simple solution how to use this key in Winamp - assaying Winamp as default media player in Control panel/Add remove programs. And then in specific application edit file associations.

  • Playing, Pausing, Stopping Audio in a Timeline

    I don't use Flash that much so the question may sound simple, but how do I pause audio in a timeline?  I have added the audio, play and stop button.  When I test it works fine, but I can't figure out how to add the pause button, or the play/pause button.
    Thanks.

    Set the audio options on "stream" for the timeline. Then - a blank keyframe would do just fine. When you need the audio on, put it again and adjust the start point in the properties panel.
    Emil Georgiev - Flash and Web Design

  • Play/Pause/Power button toast. Warranty expires soon.

    Over the past couple months the play/pause/power button has been getting more and more hard to use. my warranty is up in about a week and im sure the warranty would not cover this. i don't press the button hard at all. it just started a couple months ago if that.
    what do i do?
    6G 80GB

    Hi, Sheogorath. When did you purchase it? Have you tried sending it to the Care Point for evaluation? You may check this link to locate the nearest one in your area: http://www.microsoft.com/en/mobile/locale/. 

  • How best to handle a start button and a play-pause toggle button?

    Hello,
    Still new to AS3, on a project for a client. I'd appreciate advice on how best to handle the navigation for 5 movieclips set inside 5 separate frames on the main timeline. I have a play button on frame 1 to start the animation, but I'd like to include a play/pause toggle button on the other frames to finish the navigation. Everything works except the toggle button, when clicked, does toggle but does not stop the animation. I've copied the code, including the toggle button code on frame 4 below. How best to handle both a start button and a play-pause toggle button?
    Thanks for any help in advance.
    Frame 1:
    PlayBtn_mc.buttonMode = true;
    stop();
    PlayBtn_mc.addEventListener(MouseEvent.CLICK,startMovie);
    function startMovie(event:MouseEvent) {
    gotoAndPlay(2);
    Frame 2:
    stop();
    Frame 3:
    stop();
    Frame 4:
    RewindBtn_mc.buttonMode = true;
    RewindBtn_mc.addEventListener(MouseEvent.CLICK,rewind);
    function rewind(e:MouseEvent) {
    prevFrame();
    FFBtn_mc.buttonMode = true;
    FFBtn_mc.addEventListener(MouseEvent.CLICK,forward);
    function forward(e:MouseEvent) {
    nextFrame();
    ToggleBtn_mc.buttonMode = true;
    ToggleBtn_mc.addEventListener(MouseEvent.CLICK, doToggle);
    function doToggle(myevent:MouseEvent):void {
    ToggleBtn_mc.play();
    Frame 5:
    (Loops back to Frame 1)

    I can't tell you how appreciative I am of all your assistance.
    Could you double-check on this, I may have stumbled upon somthing- I tweaked your last code, which toggled, but didn't seem to call the scene_test_mc into action.
    But I copied below what both toggles the play/pause button and calls the mc into action. Could you verify this as reliable code and not a fluke that will break? Thank you so much! :
    ToggleBtn_mc.buttonMode = true;
    ToggleBtn_mc.addEventListener(MouseEvent.CLICK, doToggle);
    scene_test_mc.buttonMode=true;
    scene_test_mc.addEventListener(MouseEvent.CLICK, doToggle);
    function doToggle(myevent:MouseEvent):void {
    var mc:MovieClip=MovieClip(myevent.currentTarget);
    if(mc.currentFrame==1){
    mc.gotoAndStop(2);
    scene_test_mc.play();
    } else {
    mc.gotoAndStop(1);
    scene_test_mc.stop();

  • Play pause toggle button

    Hi,
    I'm new to Flash. Kindly help anyone.
    Need assistance to create toggle button. Here attaced two screenshots.
    1. inner-animation.jpg - it contains all movie clips and play pasue controls.
    2.main-animation.jpg - this is the main timeline ( inside all movie clips & control buttons)
    3.playbuton-inside.jpg - its a button symbol ( as well as pause )
    4. There also bg music and sounds for some particular animation.
    Here all working fine. But i need play & pause animation as a toggle button.
    Here is the code i added for pause:
    play();
    pause_btn.onRelease=function(){
    stop();
    Here is the code i added for pause:
    stop();
    play_btn.onRelease=function (){
    play();

    You are using AS2 code, so you should be posting in the AS2 forum (http://forums.adobe.com/community/flash/flash_actionscript?view=discussions).  If the intention is to use AS3 code, then you need to change things.
    If the intention is to use the same single button for both pause and play, then what you normally would do is establish a boolean variable that you se to determine whether the clicking of the button should play or stop the movie...
    var playMovie:Boolean = true; // assumes the movie is stopped at the start
    pause_play_btn.onRelease = function (){
       if(playMovie){
           play();
           // manage play/pause btn
       } else {
           stop();
           // manage play/pause btn
       playMovie = !playMovie; // reverse the value of the playMovie variable
    In that code where I show "// manage play/pause btn" is where you need to do whatever you need to make the pause/play button appear as intended... either hiding one or the other, or changing its frames to show the appropriate image.

  • Animation couldnt control with Play pause toggle button..

    I have multiple movie clip with bg sound.I have used the code AS3 for toggling the animation ( Play & Pause ).Automatically the animation starts and button also togggled on click but couldnt control the animation .
    I need some solutions like when the intial stage the animation wont start etither the button click to play.After that the flow as it is in action ( ON Click ). Kindly anyone guide me to solve it. i'm very new to flash. this is my first project and ihave to finish it soon..
    btns.visible = false;
    btns.addEventListener(MouseEvent.CLICK,onEl);
    dfr.addEventListener(MouseEvent.MOUSE_OVER,onEls);
    dfr.addEventListener(MouseEvent.MOUSE_OUT,onEld);
    btns.addEventListener(MouseEvent.MOUSE_OVER,onEls);
    btns.addEventListener(MouseEvent.MOUSE_OUT,onEld);
    var _vrSts:int = 0;
    function onEl(eve:Event):void    {
        if(_vrSts)    {
            trace('status:'+_vrSts);
            _vrSts = 0;
            btns.gotoAndPlay(1);
        }else    {
            trace('status:'+_vrSts);
            _vrSts = 1;
            btns.gotoAndStop(2);
    function onEls(eve:Event):void    {
        btns.visible = true;
    function onEld(eve:Event):void    {
        btns.visible = false;

    Hi Ned!
    i done it. here is the solution.One issuse is" End of the animation it goes to 1st frame with pause button, but intially there has play button."
    stop();
    btns.visible = true;
    btns.addEventListener(MouseEvent.CLICK,onEl);
    dfr.addEventListener(MouseEvent.MOUSE_OVER,onEls);
    dfr.addEventListener(MouseEvent.MOUSE_OUT,onEld);
    btns.addEventListener(MouseEvent.MOUSE_OVER,onEls);
    btns.addEventListener(MouseEvent.MOUSE_OUT,onEld);
    var _vrSts:int = 0;
    function onEl(eve:Event):void    {
        if(_vrSts)    {
            //trace('status:'+_vrSts);  
            _vrSts = 0;
            //btns.label = "Play";
            btns.gotoAndPlay(1);
            btns.visible = false;
            //if(currentFrame == 445)
                //gotoAndPlay(1);
                if(currentFrame == 445) {
                gotoAndPlay(1);    
                btns.gotoAndStop(1);    
            else
               stop();
            //btns.gotoAndStop(1);
        }else    {
            //trace('status:'+_vrSts);
            //stop();
            _vrSts = 1;
            btns.gotoAndStop(2);
            //btns.label = "Pause";
               play();
    function onEls(eve:Event):void    {
        btns.visible = true;
    function onEld(eve:Event):void    {
        if(_vrSts)
            btns.visible = false;

  • New Aluminium Keyboard Vol/play/pause etc buttons wont work

    Hello everyone, thank you for your time.
    I'm screaming at my new keyboard, I bought another Apple Aluminium Wireless keyboard to replace my previous one from 2007 that essentially went nuts after the last update.....I couldnt use the up and down arrows, the shift key would "hold itself down" etc.
    This new one wont let me use its play/pause, volume mute, down, and up etc buttons....I've remapped several Expose functions and Dashboard to work right, but you cant do anything for the audio control buttons....?
    This is too much for me, I'm very angry at this odd problem. It seems SO simple, it should just work like my previous keyboard did....
    I cant handle not having control of my iTunes music.... I could keep BOTH my Apple keyboards on and use one for play pause etc, and the other for everything else.....
    I have a hint for what the problem might be, it seems this keyboard shows up as the "old" "fat white and clear plastic wireless keyboard", perhaps that keyboard didnt have the same functions as the Aluminium? When it disconnects from my Mac for example, I dont get correct "aluminium keyboard connection lost" side on icon, I get one of the larger older plastic keyboard....
    I think this is the problem, that this keyboard identifies as the very old plastic model.....
    Im going nuts over this very simple function of a keyboard....my last keyboard blew up after the update....ok, so I have to shell out another $120 NZD for a new keyboard...ok....I'm an Apple fan, I'll choke on my pride, and when it finally arrives, from Australia....it wont control iTunes like I do several times a day....
    Can anyone help me? I tried using the firmware updates but it seems like it didnt even identify the keyboard...it showed nothing in the detection box....the keyboard was paired, probably showing up as another model of keyboard.....
    Very annoying!
    Thank you very much for your help. I hope you have a great day.

    alright its not doing it anymore after a restart. I think it was from plugging in a Logitech wireless mouse keyboard combo but i didn't use the keyboard so i didnt calibrate it. Sorry for the useless post.
    Message was edited by: NeoTranc3

  • Play/pause mouse button no longer works since update?

    I have a mouse with several buttons, one of which I customized to be "Play/Pause". This was great for iTunes -- if I was in Firefox or something, I could click it and immediately play/pause the song.
    However, with the new version of iTunes, this button no longer works, neither outside of iTunes nor inside. The button still works with other programs that it used to (eg, VLC), so it's specific to iTunes.
    My hopes aren't high, but is there any chance of solving this?

    Hi, Piafromvic. This forum is about using apple's new iBooks Author software to create books. There's a separate forum for help with the ibooks app for reading books and you might get more answers there:
    https://discussions.apple.com/community/app_store/ibooks
    Good luck!

  • Call play, pause , stop gives an error

    Hi,
    I built something like toolbar(Dialog) that include three buttons , each one for play.pause and stop.
    I built that for the fullsize view screen there i cant click the Cursor player buttons.
    I try to write code inside the button click event to play the cursor in the active sheet:
    View.ActiveSheet.Cursor.Play(true) - but this give an error and then close the diadem(not responding error)
    (the same about pause and stop)
    Help please!!
    Thanks

    Hi Oz,
    Would you please submit your *.SUD file and any other files it calls so we can attempt to reproduce this problem?  If you're shy about posting to this forum, you can email me directly at [email protected]
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments

  • A problem with the Play/ Pause control button in a quiz project

    Hi,
    I have a probem with the play/ pause button in this project,
    it is a quiz project, the problem is when I click the pause the
    project does not pause and keep working ? Any idea why?
    http://www.megaupload.com/?d=995I8WX9
    Thanks

    If you have bought you Macbook within 90 days or have bought AppleCare you can call them for free and ask them what you should do. 1-800-MY-APPLE

  • Send Button Disabled Until Text Typed - Half Done - Please Help

    Hi, i have a chat program and dont want users to be able to send messages without typing anything, i have got the send button disabled on loading, but dont no how to re enable it.
    how do i get it to react to a keyboard event?
    thanks.

    > is implementing that easy? or alot of code?
    False dilemmaDo you walk to work, or take your lunch?

  • Using REW/Play/Pause/FF buttons in VLC Possible?

    Hello, just wondering if there's a way to make the new control buttons on the Air work in VLC like they do in QT/iTunes et al.?
    Thanks in advance!

    According to VLC Devs, this is currently not possible, but MAY be added into 0.9 if the keycodes for the Air's multimedia buttons can be decoded.

  • SPACE BAR [play/pause] STOPPED WORKING!

    how come?
    i know F8 works on the extended keyboard. but will not work on my lap top keyboard.
    i know this isnt a big deal...but its totally annoying. the F8 button is so tiny. its not as easy to smack while walking by as the spacebar is. PLEASE FIX THIS.
    i do not have the use functions keys as standard keys checked.
    PLEASE FIX PLEASE FIX PLEASE FIX.
    edited to add: iTunes version 10.2.1
    Message was edited by: traddcliff

    Perhaps there is something in this article that might help:
    [Some of the keys on my keyboard don't work|http://docs.info.apple.com/article.html?artnum=300547]
    If there is no soulution in the article, try the genius bar if it's under warranty or an authorized repair location can probably give you a quote if it's not. You could even try an external keyboard.
    Good luck.

  • Button disabled until file upload is valid...

    elo. I have this application which uses a File Upload component. I can successfully upload the needed file.
    My application (part of it concerned) has a File Upload component and another button ("Submit"). The file upload works fine. The problem is, if i want to upload that file (meaning, copied to the hard disk) i have to press the "Submit" button, which is initially disabled. It can only be enabled if the File Upload's file is valid. If the file upload is cancelled, the "Submit" button should still be disabled. If the user selects a file, the "Submit" button should be enabled, so that the user can successfully upload the file.
    Help me with this please... Thanx.

    My suggestion is to use JavaScript for dynamically disabling and enabling the button based on "onClick" and "onBlur" javascript attributes of the FileUpload component.
    To get info about what kind of javascript used for FileUpload component
    - Go to the Projects tab
    - Explore the Libraries node and open Default Theme - defaulttheme.jar
    - Drill down to com.sun.rave.web.ui.defaultheme.javascript and dowuble click on formElements.js
    - Search for upload functions
    You should see the functions related to File Upload near
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    // upload functions
    // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    - Winston
    http://blogs.sun.com/roller/page/winston?catname=Creator

Maybe you are looking for

  • How do I move 'Clear history' back to Tools? Menu editor can't seem to do it. Why are you always making arbitrary GUI changes?

    I want to move the "Clear (Private Data)" menu item back to the tools menu. Menu Editor's dev didn't anticipate this so my usual option for shuffling menu commands around won't work. * I know there is a keyboard shortcut to open it. * I know it has b

  • Ipad 3: Random Loss of Control (Screen Touches)

    I usually consider myself smart enough to resolve issues through research and trial and error.  This however is an issue that is beyond me.  I recieved my iPad 3 on the 19th of March and have been using it since.  Mostly for comic book readers, PDF f

  • Can I create a PDF with form controls using JAVA?

    I have a web site running on linux (Ubuntu). I'm programming in Java. Presently I use open office to create PDFs with form controls (checkboxes, lists and text fields). I'd like to be able to create in my program (Java) with form controls. JasperRepo

  • My iPhone is slower after it upgraded.

    After I upgraded my iPhone 3Gs to iOS 4.3.4, the phone is slower and mostly it bounces off when I try to open some Apps. I am not happy about it. Is there any way to downgrade iPhone version? Or is there any way to solve this problem? For example, re

  • Dead Line

    I reported a fault on my line on 20th Jan via the online fault reporter, which said it should be fixed within 3 working days. It has been over a week now and nothing has changed.  The site also said it would keep me updated witht he latest progress b