# External swf into another external swf?

**URL:** https://forum.kirupa.com/t/external-swf-into-another-external-swf/114956
**Category:** Uncategorized
**Created:** [July 3, 2004, 8:57pm UTC](https://forum.kirupa.com/t/external-swf-into-another-external-swf/114956 "2004-07-03T20:57:20Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![Circles](https://avatars.discourse-cdn.com/v4/letter/c/ce73a5/32.png) [@Circles](https://forum.kirupa.com/u/Circles)
#### Post date: [July 3, 2004, 8:57pm UTC](https://forum.kirupa.com/t/external-swf-into-another-external-swf/114956/1 "2004-07-03T20:57:20Z")

</div>

I have a main swf file that has a container inside of it.

It works great having different swf files load into the container

Is there a way for me to load another swf inside the one that just loaded?

For example if i have 3 movie clips :MC\_1, MC\_2, MC\_3

load MC\_2 into MC\_1. then have MC\_3 load into MC\_2?

when i tried doing this the second one being loaded shows up blank (MC\_3)

thanks in advance if someone can help me with this

---

<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 3, 2004, 10:07pm UTC](https://forum.kirupa.com/t/external-swf-into-another-external-swf/114956/2 "2004-07-03T22:07:05Z")

</div>

If you want to target MC\_3 as your empty movieClip that is in MC\_2; from the timeline of MC\_2, I would use:

```auto

MC_3.loadMovie("yourmovie.swf");

```

If you need to target it from somewhere else like the main stage, you must target everything in order for Flash to find it:

```auto

_root.MC_1.MC_2.MC_3.loadMovie("yourmovie.swf");

```

In the tools of your actions panel, there is a little crosshair target thing. If you push that when you are trying to target something, this will open up a pop up window showing you all your available targets.

---

<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 3, 2004, 11:09pm UTC](https://forum.kirupa.com/t/external-swf-into-another-external-swf/114956/3 "2004-07-03T23:09:52Z")

</div>

thanks…i think i get the idea…

but im still pretty rookie at flash…so can you recommend any tuturials that would help me in this area?

---

<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 3, 2004, 11:54pm UTC](https://forum.kirupa.com/t/external-swf-into-another-external-swf/114956/4 "2004-07-03T23:54:10Z")

</div>

I’m guessing you’ve gone through the kirupa loading external stuff tut. That’s the first step, understanding the loading - which I think you understand already. Then it’s experimentation (or at least that’s what it was for me).

I found this doing a search. Search for ‘targeting nested movieClips’. You’ll find some stuff:

```auto

- Targeting or referencing movieclips and variables is usually the hardest thing to come to grips with when using Flash. Because Flash supports nested timelines or really, nested movieclips, and each movieclip can contain their own set of variables, to correctly access specific movieclips and variables you need to be able to specifically target them. This is done through dot-syntax.

```

---

<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 4, 2004, 2:47am UTC](https://forum.kirupa.com/t/external-swf-into-another-external-swf/114956/5 "2004-07-04T02:47:02Z")

</div>

ya …thats what ive been doing…thanks for your help
