# Someone must know this

**URL:** https://forum.kirupa.com/t/someone-must-know-this/29638
**Category:** Uncategorized
**Created:** [August 28, 2003, 11:18pm UTC](https://forum.kirupa.com/t/someone-must-know-this/29638 "2003-08-28T23:18:10Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![beertents](https://avatars.discourse-cdn.com/v4/letter/b/ecccb3/32.png) [@beertents](https://forum.kirupa.com/u/beertents)
#### Post date: [August 28, 2003, 11:18pm UTC](https://forum.kirupa.com/t/someone-must-know-this/29638/1 "2003-08-28T23:18:10Z")

</div>

I want to load movies in a movie. But 1 at a time of course. I need to make a button lets call it “NEXT”. I need a script that will load the next movie, On top of the other movie and so on. Hope you understand that i want one button to load more than 1 movie.  
Is this possible? All help is greatly appreciated of course. TIA!!

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 31, 2003, 2:35am UTC](https://forum.kirupa.com/t/someone-must-know-this/29638/2 "2003-08-31T02:35:59Z")

</div>

Place this on the main timeline:

```auto
var clip_array = ["movie1.swf", "movie2.swf"];//place here the name of the movies you want to load
var which = 0, depth = 100;

```

And this on the button:

```auto
on (press) {
	which == clip_array.length-1 ? which=0 : which++;
	loadMovieNum(clip_array[which], depth);
}

```
