I'm using videoDisplay MXML component for my Flex app.
I would like to autoload videos (in order to display the first frame) without automatically run them.
What's the easiest way to do it ?
thanks
I'm using videoDisplay MXML component for my Flex app.
I would like to autoload videos (in order to display the first frame) without automatically run them.
What's the easiest way to do it ?
thanks
There are 2 options:
a)FLV movie - set autoPlay="false" in VideoDisplay
b)Live stream - call player.play();player.stop() in this order
player.addEventListener(VideoEvent.READY, readyHandler);
player.source = test.mp4;
player.load(); // if autoPlay is false
private function readyHandler(event:VideoEvent):void
{
player.playheadTime = 0; // triggers a seek to first frame
}