I am having problems getting the video event to work... I wrote simple function that should start once movie completed, but no success...
<mx:Script...
import ....
private function movieEnd(event:VideoEvent):void {
trace("Movie end");
}
<mx:/Script>
<mx:VideoDisplay id="vid1" width="250" height="250"
source="src/assets/video/1.flv" complete="movieEnd(event);" />
