Play button, with audio and symbols with symbols

Hi,
So my animation is a song and I'm doing like a video clip with interactivity (the interactivity is not inside at the moment).
I need to have  a play button so we can see (heard) on iPhone, iPad...
My problem is that the animation begin immediatly behind the play button and before I press it.
So the song and the animation are not synchronise.
I try many things to stop the animation but nothing is working.
I 'm not use to the code, so I'm lost.
Here is the link :
https://creative.adobe.com/share/50ff3ebe-8636-4815-be33-594e62fe88d5
An idear will be the welcome
Thanks
Stéphane

Hi Steph,
Since your animation is contained in a nested symbol, you need to turn "Autoplay" off for that symbol. Double click your "ANIM" symbol- there is a little checkbox that says "Autoplay", in the Properties panel at top left. If you uncheck that box, that symbol will not autoplay.
On the click of your button, you will then need to add this line of code, to make that symbol's timeline play:
sym.getComposition().getStage().getSymbol("ANIM").play();

Similar Messages

  • Google app can't play all the audio and video on this page, any suggestions?

    New Lenovo Yoga laptop with W8.1. I have downloaded the google app, and when I search for something and the go to open a video, the flash player doesn't work and I get a message across the top of the window saying "google app can't play all the audio and video on this page"
    Does anyone have a fix? i can only find a fix for google chrome, not their app.
    Thanks

    The "app" from the windows app store called "google search" http://apps.microsoft.com/windows/en-gb/app/308dc145-6851-487d-b83b-1223a3b52dc2
    It isn't specific to search video or anything else, you just type in the search and it finds the answers, but it isn't done via chrome. When the result includes a video or audio and I click on the link to that page, the app kicks up that the flash player needs downloading. I can't work out how to do it

  • Play Button with Transition

    I am trying to create an initial slide that will look similar to a video played on Youtube. I would like the user to click on a Play Icon which triggers a transition to fade out and then start the presentation.
    Any ideas how I would do this?

    Hi,
    By default Captivate generated files plays automatically. There is an option to start playing the movie on demand.
    Open your project in Captivate and follow Edit> Preferences > Project > Start and End > Uncheck the "Auto Play" check box. This will insert a play button and in the published file until user clicks on the play button movie does not start playing.
    Now to  trigger a transition on clicking the play button insert a blank slide with background similar to your presentation.Let the blank slide be the first slide. Reduce its slide time. In the Slide properties of the Blank slide change its transition. Now a transition effect gets created after clicking on the play Button.
    Hope this helps !!
    -Ashwin

  • Why can i watch videos from safari online while in 3g area but when at home connected to wi-fi the video screen comes up with a play button with a line through it and doesnt let you watch video

    i can not watch videos while at home and connected to wi-fi. when i touch the video i want to watch a screen comes up with a play symbol with a line through it. i can disconnect from the wi-fi and go to 3g and the video will play. this is happening when i go to safari and try to watch a online video.

    here's the info you needed:
    windows xp professional
    mozilla 3.0.19
    explorer 8.0.6001.18702
    still having the same problem unfortunately.  i appreciate your help thus far and hope you have more info.  thanks a lot.

  • Keyboard play buttons with iTunes 7

    Hi,
    I used to use MultiPlugin for iTunes 6 to operate my iTunes controls with the keyboard, however this won't install on iTunes 7. Does anyone have any other way to do this?
    Thanks!
    Jason

    You best bet is to wait abit til there able to "Catch up" and release an update so it does work with iTUnes 7 since iTunes 7 is a major update rewritting alot of its underpinnings

  • Select song, hit play button for music and only get spinning circle

    Apple TV does not respond to play music.  All my music shows on the screen, but when I hit button to play all I get is the spinning circle. Gave it several minutes to see if it just needed time to load but nothing.  Internet connection must be ok because I can play a Netflix selection.

    Hello there Shazack,
    It sounds like you are trying to play your iTunes purchases on your Apple TV but it never plays. I would start by restarting your device in this manner:
    Apple TV: How to restart your Apple TV
    Restart your Apple TV by selecting Settings > General > Restart.
    If that does not fix the issue, I would sign out of your Apple ID in Settings on your device, then restart one more time and sign back in.
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • Recording and Playing back Streaming Audio and Video

    Hi Folks...
    I posted this in another forum too. I have this sample code from the e-book: "Learning Flash Media Server 3". The purpose of the code is to create a FLV. The code is not running as it should. When I click on the 'record' button, the label is to change to 'recording', that dosen't seem to happen and also when I click on the 'Stop Record' button, I get the following error:
    "TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at MinRecord/stopRecord()"
    I have my suspicion on a certain section of the code as the possible culprit, but I am not sure how to rectify it, I will post the entire code here so you guys can have a look.
    package
          import fl.controls.Button;
          import fl.controls.TextInput;
          import flash.display.Sprite;
          import flash.net.NetConnection;
          import flash.net.NetStream;
          import flash.events.NetStatusEvent;
          import flash.events.MouseEvent;
          import flash.events.Event;
          //import flash.net.ObjectEncoding;
          import flash.media.Camera;
          import flash.media.Microphone;
          import flash.media.Video;
          public class MinRecord extends Sprite
           private var nc:NetConnection;
           private var ns:NetStream;
           private var rtmpNow:String;
           private var msg:Boolean;
           private var cam:Camera;
           private var mic:Microphone;
           private var vid1:Video;
           private var recordBtn:Button;
           private var stopBtn:Button;
           private var textInput:TextInput;
           //Constructor
           function MinRecord ()
           //NetConnection.defaultObjectEncoding = flash.net.ObjectEncoding.AMF0;
           nc=new NetConnection();
           nc.addEventListener (NetStatusEvent.NET_STATUS,checkConnect);
           rtmpNow="rtmp://192.168.0.11/vid2/recordings";
           //rtmpNow="rtmp:/vid2";
           nc.connect (rtmpNow);
           addMedia ();
           addUI ();
           recordBtn.addEventListener (MouseEvent.CLICK,startRecord);
           stopBtn.addEventListener (MouseEvent.CLICK,stopRecord);
         private function addMedia ():void
           cam=Camera.getCamera();
           cam.setMode (240,180,24);
           cam.setQuality (0,90);
           mic=Microphone.getMicrophone();
           vid1=new Video(cam.width,cam.height);
           vid1.attachCamera (cam);
           addChild (vid1);
           vid1.x=100;
           vid1.y=50;
           private function addUI ():void
           recordBtn=new Button();
           recordBtn.label="Record";
           recordBtn.x=100;
           recordBtn.y=50+(cam.height) +5;
           recordBtn.width=70;
           addChild (recordBtn);
           stopBtn=new Button();
           stopBtn.label="Stop Record";
           stopBtn.x=recordBtn.x+85;
           stopBtn.y=recordBtn.y;
           stopBtn.width=75;
           addChild (stopBtn);
           textInput=new TextInput();
           textInput.x=recordBtn.x;
           textInput.y=recordBtn.y + 30;
           addChild (textInput);
           private function checkConnect (e:NetStatusEvent):void
                msg=(e.info.code=="NetConnection.Connect.Success");
                 if (msg)
                  ns = new NetStream(nc);
           private function startRecord (e:Event):void
                 if (ns)
                       recordBtn.label="Recording";
                       ns.attachAudio (mic);
                       ns.attachCamera (cam);
                       ns.publish (textInput.text,"record");
           private function stopRecord (e:Event):void
                 recordBtn.label="Record";
                 ns.close ();
    My deduction is that the 'if' statement in the 'startRecord' function is not resolving to 'true' and hence the label is not changing to 'Recording'. Also I feel that the assingment to the variable 'ns' of type NetStream is not being done and hence in the function 'stopRecord' I get the above mentioned error message when I click on the stop button. How do I rectify these problems?

    Hi Amit,
    Thanks for the message, I had acutually realised late last evening that changing this:
    rtmpNow="rtmp://192.168.0.11/vid2/recordings"
    to this:
    rtmpNow="rtmp:/vid2"
    which is what you have also recomended solves one of the problems which is that of the startRecord function, as my server is running on my own local machine. However when I click on stop record, I am getting the following error:
    "Error #2044: Unhandled NetStatusEvent:. level=error, code=NetStream.Publish.BadName
    at MinRecord/checkConnect()"
    I am trying to figure this one out...if you have any clues, let me know. Thanks.

  • IChatAV not doing audio and video with Jabber

    I am using a Macbook and have configured iChat to talk to MSN via Jabber using Psi and a server in UK called tuff.org.uk. The buddies show up and I can text chat with them but the buttons for audio and video are greyed out. I have usually use a wireless router with NAT and have played with port forwarding. As an exercise I have tried connecting to the internet via my mobile phone (no NAT) and the results are the same. I am not using the firewall on the Mac.
    There are no hardware problems I am aware of, the built-in iSight camera works within iChat etc.
    Any help would be appreciated.

    Hi Jan,
    Rocky's answer is the correct one.
    I must admit I am not even sure you were addressing him though as you post looks like a strange ramble and looks like you signed it as Rocky as well.
    iChat to iChat over Jabber names is possible as both ends will use the iChat way of doing Video (or Audio) chats.
    iChat to another Jabber app will not do Video (Audio) chats.
    The only App on a PC that Might be technically capable is Trillian as it does Jabber and AIM. However there seems to be no way to get it's Jabber side to invoke the AIM A/V features to match iChat.
    5:32 PM Sunday; March 25, 2007

  • White Slide with Play Button (HTML5), Cp7

    Does anyone know why you get the blank white screen with a play button with HTML5? Why doesn't it use first frame or allow us to put in a "poster file"?
    I posted a workaround that required editing files in Cp6 but I am curious if Cp7 has addressed this issue?
    Thanks.
    Dave

    The same workaround is reuired.
    Go in assets and change the .CSS then you also need to edit the index.html to center the image like you did before.
    And yes it is impossible to get rid of it all toghether because of Apple policies.

  • Trouble playing/pausing with Zen Micro touch

    I am having a fairly peculiar (and frustating) issue with my new Zen Micro's touchpad. For me, the Play "button" (area) works only sporatically. Here's the symptoms: I can reliably press the Play/Pause button with my thumb, but I can't reliably press play with the tip of my finger. I NEED to be able to do this since I set the player on my desk at work and will need to quickly hit the Pause button if something comes up (read: if I actually have to work).
    I have the latest firmware, so that isn't a solution for me and I have tried playing with different sensitivity settings. After playing around quite a bit, I have determined that the button requires something wide pressing down on it to work. The narrow tip of my finger doesn't work, but the (wider) side of my thumb or even 2 finger tips work great.
    Has anyone experienced something similar to this? Is my player functioning normally? Any help is much appreciated.

    i have the same problem. back, forward and volume control works fine. sometime much too good
    but play, back and menu is only reacting sometimes for me.
    and thats the second player i have. had the same prob with the first and got a new one from the vendor.
    someone here could help out a little plz? can you all use the play button with the tip of your finger ?Message Edited by washi on 02-23-2005 0:47 AM

  • Play audio and video streams in only one player

    I am programming a video conference system and I need to play streams of audio and video with only one player. I recieve the audio and video with two different sessions and two windows players are opened to play the medias. I want to play both medias with an only window. Can I do this?
    Thank you!

    I am programming the videoconference program using Java Media Framework API. I use two session to transmint and recieve the media, one for audio and one for video. Two players are opened to play both media. I would like to know if I can play both media using only one window.

  • IWeb video play button doesn't work

    I've got several videos on my website, but for some reason the play buttons don't work. You can play the video by double clicking it, but you can't even activate the play button.
    web.me.com/patrickjw

    Re: iWeb play buttons not working and your fix about showing the different elements of the page.
    I too had problems with the slideshow play buttons not working (iWeb '09). Whether I published to a folder or the internet, the buttons just wouldn't work. After spending much too much time on it, I almost gave up. Until I read your post about one element overlapping another. Although my problem was slightly different then the one you were addressing, your post gave me the answer I needed.
    Here's the problem and the fix:
    I created the typical 'Photos' page. But I got too fancy and that was the problem! For design reasons, I put a frame around the outside of the 'Photos' element. Using the 'Shapes' tool, I created a frame with a thin ruled border and had a 'fill' of 'none.' The 'none' fill made it possible to see the photos and buttons through the frame I made. Kind of like a hole in the frame so I could see through it. It was the last thing I did, so it was on top of everything else. It was the top element on the page. AND THAT WAS THE PROBLEM: IT WAS THE TOP ELEMENT. IT BLOCKED THE BUTTONS UNDERNEATH FROM WORKING! Even though I saw the photos and buttons ('Play Slideshow' & 'Subscribe') through the 'hole' I had in the frame, the frame was still on top and blocked the buttons from functioning. iWeb didn't recognize the 'none' fill and saw the frame as completely opaque. As soon as I made the frame the back element on the page (Arrange>Send To Back), all the buttons worked!!! Everything looked exactly the same to the naked eye as it first did, but now iWeb saw it differently and everything, all the buttons, worked.
    Since this situation doesn't seem to be documented anywhere in iWeb, I thought I'd pass the info along.
    Although I still have some things that bother me about iWeb, the program is looking a lot better to me today then it did yesterday!

  • I cannot activate the play button on a video in firefox using the keyboard

    I am blind and use a screen-reader called JAWS For Windows to navigate the internet. Because I am blind I cannot use a mouse and rely on the keyboard to navigate and interact with web pages. I tend to play a lot of video for business reasons. I can, using internet explorer, navigate to and press the play button in websites such as Youtube. However this is not possible using firefox. I sometimes have occasion to use video download helper and in order to download I have to play the video first and unless there is someone around who can click the play button with a mouse I cannot do this. Any ideas? I have tried on two different computers, 1 is a netbook running IE8 with Windows 7 starter edition and the other is a desktop running Windows XP Home SP3. I would much prefer to be using firefox on a permanent basis as it also gives me access to a plugin which deals with Captcha Images.

    If the menu bar is hidden then press the F10 key or hold down the Alt key to make the menu bar appear.
    Make sure that toolbars like the "Navigation Toolbar" and the "Bookmarks Toolbar" are visible:
    *"View > Toolbars"
    Open the Customize window to set which toolbar items to display:
    *View > Toolbars > Customize
    *Firefox > Options > Toolbar Layout
    *Check that the "Bookmarks Toolbar items" is on the Bookmarks Toolbar
    *If the "Bookmarks Toolbar items" is not on the Bookmarks Toolbar then drag it back from the toolbar palette in the customize window to the Bookmarks Toolbar
    *If missing items are in the toolbar palette then drag them back from the Customize window on the toolbar
    *If you do not see an item on a toolbar and in the toolbar palette then click the "Restore Default Set" button to restore the default toolbar set up
    *https://support.mozilla.org/kb/Back+and+forward+or+other+toolbar+items+are+missing

  • Audio and Video on the same page.

    Is it ok to have a separate audio and video file on the same page?  Both are set to auto play with no controls but when I try this set up the audio seams to override the video, stopping the video a few seconds later.
    I guess I could try and embed the audio into the video but if I did not have to I was not going to.
    Any suggestions or help is appreciated.
    Thanks,
    Ryan.

    You can't play both the audio and the video simultaneously, you'll need to merge them.
    Neil

  • Play button failure on my zen x

    i have a zen xtra (30gig), the warranty is expired and the play button no longer functions period. i push the button and nothing happens. i am very sad. the other buttons work just fine. is this a mechanical problem? any help would be greatly appreciated. i know i can still play music by reloading my playlist with the "play now" option but really... the play button is important and i would really love to have it functioning again.

    Try the things SSR mentioned to rule out any problems with the firmware/software. If you're still having problems after that, then it's likely it's a hardware fault. Contact Customer Support to see if they can help. If the player is out of warranty, they will be able to advise on the price of an out-of-warranty repair.
    Cat

Maybe you are looking for