# Please Help! Loading and External Movie within an External Movie

**URL:** https://forum.kirupa.com/t/please-help-loading-and-external-movie-within-an-external-movie/173106
**Category:** flash
**Created:** [December 21, 2005, 9:09am UTC](https://forum.kirupa.com/t/please-help-loading-and-external-movie-within-an-external-movie/173106 "2005-12-21T09:09:16Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Mage](https://avatars.discourse-cdn.com/v4/letter/m/6f9a4e/32.png) [@Mage](https://forum.kirupa.com/u/Mage)
#### Post date: [December 21, 2005, 9:09am UTC](https://forum.kirupa.com/t/please-help-loading-and-external-movie-within-an-external-movie/173106/1 "2005-12-21T09:09:16Z")

</div>

Hey I seriously need help.  
I have a project due tomorrow and I’m a bit suck ☹

Basically What I have is…

A index.swf that has a content\_holder movieclip

content\_holder then loads an external moveclip within conent/content\_home.swf.

```auto
loadMovie("content/content_home.swf", _root.content_holder);
stop();

```

Withthin content\_home.swf I have another placeholder named feature\_holder. This loads home/feature.swf within itself

```auto
loadMovie("home/feature.swf", _root.feature_holder);
stop();

```

Basically what happens is…  
When I run index.swf it loads the content\_home.swf but then the content\_home.swf does not load the feature.swf.

If I run content\_home.swf by itself it **DOES** load feature.swf so I know the linking is right but whenever I run it from index.swf it won’t work D:

please help ☹
