# Flash MX load movie clip problem (novice)

**URL:** https://forum.kirupa.com/t/flash-mx-load-movie-clip-problem-novice/62782
**Category:** Uncategorized
**Created:** [August 31, 2004, 9:00am UTC](https://forum.kirupa.com/t/flash-mx-load-movie-clip-problem-novice/62782 "2004-08-31T09:00:08Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![sci](https://avatars.discourse-cdn.com/v4/letter/s/ce7236/32.png) [@sci](https://forum.kirupa.com/u/sci)
#### Post date: [August 31, 2004, 9:00am UTC](https://forum.kirupa.com/t/flash-mx-load-movie-clip-problem-novice/62782/1 "2004-08-31T09:00:08Z")

</div>

hello,

I’m getting confused with the following basic problem.

I’ve created a movie. Within this movie I have a movie clip called pro\_menu.  
Within “pro\_menu” I have an empty movie clip called “target\_mc” and a button. I want to load in an external swf called “test.swf” into “target\_mc” with the press on my button. I’ve coded it as follows:

on (press) {  
loadMovie(“test.swf”, “\_root.pro\_menu.target\_mc”);  
}

it doesn’t seem to work. Have I coded it incorrectly?

any solutions would be appreciated.

---

<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, 2004, 7:49pm UTC](https://forum.kirupa.com/t/flash-mx-load-movie-clip-problem-novice/62782/2 "2004-08-31T19:49:44Z")

</div>

```auto

 on (press){
_root.pro_menu.target_mc.loadMovie("test.swf");
}
 

```
