# Flash CS3 / AS 2.0 - External SWF not Loading ON TOP of stage?

**URL:** https://forum.kirupa.com/t/flash-cs3-as-2-0-external-swf-not-loading-on-top-of-stage/294042
**Category:** Uncategorized
**Created:** [August 7, 2009, 12:08pm UTC](https://forum.kirupa.com/t/flash-cs3-as-2-0-external-swf-not-loading-on-top-of-stage/294042 "2009-08-07T12:08:46Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Khromatic](https://avatars.discourse-cdn.com/v4/letter/k/90ced4/32.png) [@Khromatic](https://forum.kirupa.com/u/Khromatic)
#### Post date: [August 7, 2009, 12:08pm UTC](https://forum.kirupa.com/t/flash-cs3-as-2-0-external-swf-not-loading-on-top-of-stage/294042/1 "2009-08-07T12:08:46Z")

</div>

Hello everyone! :pope:  
" I am new to flash, " and am having a (minor?) problem. I am using ActionScript 2.0

Currently I am having issues with the way my external swf. is being loaded. I am using a MovieClip Loader. I want the external SWF that is loaded into the movie clip holder to be placed on top of the stage and covering everything beneath it.

To get a better clue of what I am dealing with you may check [http://www.thekhromatic.com/k1/Index.html](http://www.thekhromatic.com/k1/Index.html) - that is what i am working with currently, and if you click the thumbnail image you can see a green box with body text which is loading. however I would like it to load on top instead of below!

var mcl:MovieClipLoader = new MovieClipLoader();

var mclL:Object = new Object();

mclL.onLoadProgress = function(target,loaded,total) {  
loader.percent.text = Math.round((loaded/total) \* 100) + “%”;  
}

mclL.onLoadInit = function() {  
loader.\_visible = false;  
loader.percent.text = “”;  
}

mcl.addListener(mclL);

mcl.loadClip(“home.swf”,holder);

b1.onRelease = function() {  
loader.\_visible = true;  
mcl.loadClip(“home.swf”,“holder”);  
}

^^ this is the code I am using. Within the Home swf is another SWF being loaded. Is that the problem? I’ve done several searches all day. It’s now 5 in the morning… ahh someone please help :frankenstein:I’ve got all FLA . SWF files uploaded too ::

[http://www.thekhromatic.com/k1/Index.html](http://www.thekhromatic.com/k1/Index.html)

```
I realize the time it takes to figure this out and would be grateful for any kind of advice that may lead to a solution!
```
