FLEX, VideoDisplay: how to autoload without autorunning

1.4k Views Asked by At

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

2

There are 2 best solutions below

3
On BEST ANSWER

There are 2 options:

a)FLV movie - set autoPlay="false" in VideoDisplay

b)Live stream - call player.play();player.stop() in this order

0
On
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
}