FlvComponent bug when looping, any help?

Hey there,

I’m using the FLV component in a document class to display a full screen seamless loop video.
The problem is that when the video is autorewinded and starts looping, there is a slowdown during maybe 1 sec, is it possible to arrange something, cuase i think it will be even worse when published online.


        myVideo.source = "sky.f4v";
        addChild(myVideo);
        myVideo.x=0;
        myVideo.y=0;
        myVideo.width = stage.stageWidth;
        myVideo.align = "topLeft";
        myVideo.scaleMode = "noScale";
        myVideo.autoRewind = true;
        myVideo.height = stage.stageHeight;
        myVideo.addEventListener(VideoEvent.COMPLETE, completeHandler);

    public function completeHandler(event:VideoEvent):void {
        myVideo.seek(0);
        myVideo.play();
    }

many thanks