-
1. Re: How do I make the FLV video screen a Play button?
kglad Sep 10, 2011 11:25 AM (in response to jl2000)create a play button and position it over your flvplayback component and assign an instance name, eg bigPlay_btn. you can then use:
bigPlay_btn.onRelease=function(){
this._visible=false;
yourflvplaybackcomponent.play(); // use your component's instance name.
}
// you'll probably also want to use listeners for the video playing/stopping so you can control bigPlay_btn's _visible property.
-
2. Re: How do I make the FLV video screen a Play button?
jl2000 Sep 10, 2011 11:53 AM (in response to kglad)Hi kglad -
Thanks. That worked perfectly.
Surely you jest with me. Since I couldn't script a play button where in my brain do you think I would I find the cells to "use listeners for the video playing/stopping to control bigPlay_btn's _visible property".
That's okay. I'm sure after answering almost 50,000 questions it's easy to forget who you're talking to.
Thanks again.
Josh
-
3. Re: How do I make the FLV video screen a Play button?
kglad Sep 10, 2011 12:43 PM (in response to jl2000)you're welcome.



