Hello!
so im loading an flv into an flvplayback component on my stage using:
and then usingCode:import mx.video.*; myVid.autoPlay = true; myVid.contentPath = "swf/video/myvideo.flv"; myVid.skin = "swf/qxvSkin.swf"; myVid.autoRewind = false; myVid.skinAutoHide=false;
to seek to a section of the vid with a button, all works fine!Code:on(release){myVid.seek(264.0);}
but...
when its online, if the video hasnt buffered up to 264 seconds then it just stalls and breaks everything when i press the button...
is there a way to get the video to buffer from whatever time i choose to seek to rather than having to buffer the entire thing first...?
thanks!




Reply With Quote