# On FLV completion

**URL:** https://forum.kirupa.com/t/on-flv-completion/240030
**Category:** Uncategorized
**Created:** [September 28, 2007, 1:16pm UTC](https://forum.kirupa.com/t/on-flv-completion/240030 "2007-09-28T13:16:16Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![dewey](https://avatars.discourse-cdn.com/v4/letter/d/919ad9/32.png) [@dewey](https://forum.kirupa.com/u/dewey)
#### Post date: [September 28, 2007, 1:16pm UTC](https://forum.kirupa.com/t/on-flv-completion/240030/1 "2007-09-28T13:16:16Z")

</div>

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
