Hello!

so im loading an flv into an flvplayback component on my stage using:

Code:
import mx.video.*;
myVid.autoPlay = true;
myVid.contentPath = "swf/video/myvideo.flv";
myVid.skin = "swf/qxvSkin.swf";
myVid.autoRewind = false;
myVid.skinAutoHide=false;
and then using

Code:
on(release){myVid.seek(264.0);}
to seek to a section of the vid with a button, all works fine!
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!