# Please help with loading multiple movies

**URL:** https://forum.kirupa.com/t/please-help-with-loading-multiple-movies/22258
**Category:** flash
**Created:** [June 1, 2003, 8:51pm UTC](https://forum.kirupa.com/t/please-help-with-loading-multiple-movies/22258 "2003-06-01T20:51:56Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![korniceman3000](https://avatars.discourse-cdn.com/v4/letter/k/779978/32.png) [@korniceman3000](https://forum.kirupa.com/u/korniceman3000)
#### Post date: [June 1, 2003, 8:51pm UTC](https://forum.kirupa.com/t/please-help-with-loading-multiple-movies/22258/1 "2003-06-01T20:51:56Z")

</div>

Hi,

I am trying to load three different external swfs into a single frame of the main swf movie but don’t know how.

I tried using this code:

loadMovie(“external.swf”, “movieholder”);

but this only loads a single movie into that frame.

Can you please help me find a way to load three movies into 1 frame?

Thanks

---

<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: [June 2, 2003, 4:40am UTC](https://forum.kirupa.com/t/please-help-with-loading-multiple-movies/22258/2 "2003-06-02T04:40:03Z")

</div>

cant you just do this:  
[AS]  
loadMovieNum(“movie1.swf”,“level”);  
loadMovieNum(“movie2.swf”,“level”);  
loadMovieNum(“movie3.swf”,“level”);  
[/AS]

or create an array and load it from that
