[F8],[AS2] FLV is fully loading before playing
Greetings All,
I'm using :
Code:
var MC:MovieClip = createEmptyMovieClip('MC',10);
var vp2:FLVPlayback = FLVPlayback(MC.attachMovie("FLVPlayback", "vp2", 0));
plus some other code for controls, etc. Everything works fine, except the problem is that when viewed online , Flash waits to load the entire video before playing it. I have another video player elsewhere on the site that is just an FLVPlayBack Component in a movie clip (which is why I'm trying this "new" way of dynamically attaching the FLVPlayBack because I don't like things on my TimeLine [including nested timelines in dynamically-attached clips]), but that one streams fine, plays right away.
I threw a dynamic text field on the stage & metered the vp2.bytesLoaded, & watched it fully load before playing...
How do I make it start playing before it's fully-loaded?
Where's the Streaming=true, or the dammitStartRightNow()?!?
Thanks :)