# Loading movies inside a loaded movie

**URL:** https://forum.kirupa.com/t/loading-movies-inside-a-loaded-movie/148797
**Category:** Uncategorized
**Created:** [May 23, 2005, 5:37pm UTC](https://forum.kirupa.com/t/loading-movies-inside-a-loaded-movie/148797 "2005-05-23T17:37:26Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![statikcat](https://avatars.discourse-cdn.com/v4/letter/s/85f322/32.png) [@statikcat](https://forum.kirupa.com/u/statikcat)
#### Post date: [May 23, 2005, 5:37pm UTC](https://forum.kirupa.com/t/loading-movies-inside-a-loaded-movie/148797/1 "2005-05-23T17:37:26Z")

</div>

So I have a menu in my **main movie**. When you click on a button it loads a movie below (we will call this **sub movie** ). Inside **sub movie** I want to have another menu that loads another movie. This just isnt working… is this possible? If I run the **sub movie** in flash it loads additional movies fine… but when I run the **main movie** that loads the **sub movie** … the movie loader in the \*\*sub menu \*\*isnt working.

Here is the loader code for the \*\*main movie  
\*\*on (release) {  
\_root.contents.loadMovie(“members.swf”);  
}  
on (release) {  
gotoAndPlay(1);  
}

Here is the loader code for the **sub movie**  
on (release) {  
\_root.contents2.loadMovie(“nam.swf”);  
}  
on (release) {  
gotoAndPlay(1);  
}

I made sure the root.contents had the variation of “2” so it would not confuse the empty movie clip to load into…
