# Question about repeating interval

**URL:** https://forum.kirupa.com/t/question-about-repeating-interval/84960
**Category:** flash
**Created:** [March 31, 2005, 8:15pm UTC](https://forum.kirupa.com/t/question-about-repeating-interval/84960 "2005-03-31T20:15:46Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![jillymo](https://avatars.discourse-cdn.com/v4/letter/j/5f9b8f/32.png) [@jillymo](https://forum.kirupa.com/u/jillymo)
#### Post date: [March 31, 2005, 8:15pm UTC](https://forum.kirupa.com/t/question-about-repeating-interval/84960/1 "2005-03-31T20:15:46Z")

</div>

I am wondering if I possibly set this movie to load every 2 seconds rather than loading into my main movie after 2 seconds. I thought I was using the interval functions properly but my movie (ebs.swf) just keeps loading over and over…even with the stop. This follows 3 previous uses of set interval which are all working fine, though they are also fading in instead of just loading. I will compare it to those again to see what I am missing or doing wrong, but anyway here is the code:

```auto
_root.createEmptyMovieClip("holder5", 9999);
holder5._x = 300;
holder5._y = 400;
function loadIn4(){
	loadMovie("ebs.swf",_root.holder5);
}
load4interval =setInterval(loadIn4,2000);
stop();

```
