# Loading external movies and levels

**URL:** https://forum.kirupa.com/t/loading-external-movies-and-levels/129988
**Category:** Uncategorized
**Created:** [November 30, 2004, 3:18pm UTC](https://forum.kirupa.com/t/loading-external-movies-and-levels/129988 "2004-11-30T15:18:56Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![acedog](https://avatars.discourse-cdn.com/v4/letter/a/5f9b8f/32.png) [@acedog](https://forum.kirupa.com/u/acedog)
#### Post date: [November 30, 2004, 3:18pm UTC](https://forum.kirupa.com/t/loading-external-movies-and-levels/129988/1 "2004-11-30T15:18:56Z")

</div>

Okay let me see if I can explain this the best I can. I have Movie1 loaded into the Maintime line and then Movie 1 has a button which calls another movie to load into the Maintime line. I cannot seem to get this loaded right.

Below is the code for my button

on(release) {  
\_root.createEmptyMovieClip(“port”, 5)  
loadMovie(“portfolio.swf”, “port”);  
setProperty(“port”, \_x, 100);  
setProperty(“port”, \_y, 20);  
}
