-
1. Re: How to make a big screen PLAY button for FLV which will fade away after the movie starts?
Rob Dillon Feb 2, 2012 3:57 PM (in response to nikolaig)You can use a Tween to change the alpha property of that button. Something like this might work:
var buttonTween:Tween = new Tween(play_btn, "alpha", Regular.easeOut, 1, 0, 1, true);
-
2. Re: How to make a big screen PLAY button for FLV which will fade away after the movie starts?
nikolaig Feb 2, 2012 5:53 PM (in response to Rob Dillon)Oh, so it stays on the screen and just fades to 0 once it is clicked.
What would be an "if" statement or any other variable if I would like the video to be paused or stopped (actually what it the difference?)
and then target the new mc with the pause graphics?
-
3. Re: How to make a big screen PLAY button for FLV which will fade away after the movie starts?
Rob Dillon Feb 2, 2012 6:18 PM (in response to nikolaig)The FLVPlayback component can be set to use any number of controls for the video playback. You should use those for playback control once the video has started. If you do want to create all of your own custom controls, here's an Adobe tutorial on the FLVPlayback control structure: http://help.adobe.com/en_US/as3/components/WS5b3ccc516d4fbf351e63e3d118a9c65b32-7f00.html
And here is a third party tutorial on creating your own controls: http://www.lemlinh.com/as3-video-player-tutorials-roundup/


