On FLV completion

Hey Gang,

So I’m here programming in AS3. I am still pretty new to it, but I friggin’ love it. So easy and nice!

Of course though, I have hit a snag I cannot get by.

I have an FLVPlayback going on and it works fine. It is on a movieclip and it plays when said movieclip is clicked. My issue is that after the video plays, if I try to play it again, it loads up but then just pauses and won’t play (I don’t have the play/pause controls built just yet, but the video should just play, there is nothing that should pause it).

Basically I call a play method which does this…

_flv.play(_source);
_flv.seek(180);

I am seeking because that’s close to the end of the video and I’m really just working on the video complete code at the moment… Anyways, I just want the video to play again if it’s clicked.

When the video has completed I have tried using

_flv.stop();

Which just gives me the same issue…

and

_flv.closeVideoPlayer(_flv.activeVideoPlayerIndex);

which throws an error because I cannot delete the default video player…

Can anyone help me out here and tell me what I am doing wrong?

Thanks!

–d