# Load external movie failure!

**URL:** https://forum.kirupa.com/t/load-external-movie-failure/57847
**Category:** flash
**Created:** [July 16, 2004, 5:23pm UTC](https://forum.kirupa.com/t/load-external-movie-failure/57847 "2004-07-16T17:23:48Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![RyanC](https://avatars.discourse-cdn.com/v4/letter/r/a4c791/32.png) [@RyanC](https://forum.kirupa.com/u/RyanC)
#### Post date: [July 16, 2004, 5:23pm UTC](https://forum.kirupa.com/t/load-external-movie-failure/57847/1 "2004-07-16T17:23:48Z")

</div>

Hi all, i have 2 movie clips say mc\_main.swf and mc\_gb.swf. Both work fine individually. The mc\_gb.swf is a flash cgi guestbook.

1. I try to use the following code to load mc\_gb.swf into mc\_main.swf

```auto
 loadMovie("mc_gb.swf","content"); 

```

result:  
successfully loaded in , but the mc\_main.swf is gone, leave only mc\_gb.swf .  
what i want is to have a new layer contains mc\_gb.swf and mc\_main.swf stays on a lower layer.

1. I also try this code

```auto
  loadMovie("mc_gb.swf",0);

```

result:  
seems ok, but the guestbook cant work. It cant get the data from cgi server.

Can anyone answer this?:red:

---

<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: [July 16, 2004, 5:32pm UTC](https://forum.kirupa.com/t/load-external-movie-failure/57847/2 "2004-07-16T17:32:34Z")

</div>

change it to

```auto
loadMovie("mc_gb.swf",1);

```

should work if you load into level 0 of anything it wil replace the whole content of the movieclip

---

<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: [July 16, 2004, 5:54pm UTC](https://forum.kirupa.com/t/load-external-movie-failure/57847/3 "2004-07-16T17:54:13Z")

</div>

> [@grimdeath](#):
>
> change it to
> 
> ```auto
> loadMovie("mc_gb.swf",1);
> 
> ```
> 
> should work if you load into level 0 of anything it wil replace the whole content of the movieclip

Again, ok for loading movie clip but the guestbook still cant work.
