# Load SWFs consecutively

**URL:** https://forum.kirupa.com/t/load-swfs-consecutively/8889
**Category:** flash
**Created:** [November 30, 2002, 1:31pm UTC](https://forum.kirupa.com/t/load-swfs-consecutively/8889 "2002-11-30T13:31:15Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Pjc4real](https://avatars.discourse-cdn.com/v4/letter/p/58f4c7/32.png) [@Pjc4real](https://forum.kirupa.com/u/Pjc4real)
#### Post date: [November 30, 2002, 1:31pm UTC](https://forum.kirupa.com/t/load-swfs-consecutively/8889/1 "2002-11-30T13:31:15Z")

</div>

Hey guys!

On my index page, I’m using loadMovieNum to load all my SWFs. I was wondering - is there an easy way to load them consecutively (one after the other) eg so I can load a nav bar first, then a “home” section. Bcoz at the moment, they all load simultaneously (at the same time).

Ne ideas?

(AXNSCRIPT BELOW for frame 1 of index page)

stop();  
loadMovieNum(“nav.swf”, 1);  
loadMovieNum(“home.swf”, 2);

---

<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: [November 30, 2002, 2:13pm UTC](https://forum.kirupa.com/t/load-swfs-consecutively/8889/2 "2002-11-30T14:13:30Z")

</div>

well you could put the action for loading “home” in the nav bar movie. But then you have to use \_root.myhome.loadVariables(); or loadVariables("", \_root.myhome);  
so you have to include the mc where you want home to be loaded in!  
Remember “\_root.” is the main timeline of a movie  
But when a movie is loaded to another movie then “\_root” is the main timeline of the movie it’s loaded into!
