# .flv looping after delay in AS

**URL:** https://forum.kirupa.com/t/flv-looping-after-delay-in-as/266842
**Category:** flash
**Created:** [July 24, 2008, 8:46pm UTC](https://forum.kirupa.com/t/flv-looping-after-delay-in-as/266842 "2008-07-24T20:46:08Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![dubsfan](https://avatars.discourse-cdn.com/v4/letter/d/eb9ed0/32.png) [@dubsfan](https://forum.kirupa.com/u/dubsfan)
#### Post date: [July 24, 2008, 8:46pm UTC](https://forum.kirupa.com/t/flv-looping-after-delay-in-as/266842/1 "2008-07-24T20:46:08Z")

</div>

Hello

I have an ad banner which calls up a external .flv.

I have placed it on the stage, but I want it to pause about 3 seconds, then loop automatically.

When I select the flv on stage, I got the loop to work by adding actionscript below, but I want it wait 3 seconds before playing again. Right now it just plays again, giving it a feeling of replaying “too soon”. I’m not great with AS, so if there is some actionscript I can incorporate here it would be great, but if it require setting up a function or something first, let me know where I should put that code in the timeline…Any suggestions? Thank you!

```
on (complete) {
    this.autoRewind = true;
    this.play();

```

}
