FLVPlayback help
Using an FLVPlayback component that is calling an external video. Got it to pause and seek to 0 when I click to different frame and once I click back I got it to play the video normally FINALLY! Problem is a quarter of the way through the second video play it automatically jumps to next frame. Anyone know why? Hope this thread is much more clear and I can get a response. Here is the scrip ---- Please Help.
--Frame 1--
import fl.video.*;
button.addEventListener(MouseEvent.CLICK, fl_MouseClickHandler);
function fl_MouseClickHandler(event:MouseEvent):void
{
teaser.pause();
teaser.seek(0);
teaser.visible = false;
gotoAndPlay(2);
}
stop();
--Frame 2---
button2.addEventListener(MouseEvent.CLICK, btn2Down);
function btn2Down(event:Event):void
{
teaser.visible = true;
teaser.play();
gotoAndPlay(1);
}
stop();
*teaser being the FLVPlayback instance name.