# Loading external swf movie problem!

**URL:** https://forum.kirupa.com/t/loading-external-swf-movie-problem/301873
**Category:** flash
**Created:** [December 17, 2009, 4:10am UTC](https://forum.kirupa.com/t/loading-external-swf-movie-problem/301873 "2009-12-17T04:10:55Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![brown22](https://avatars.discourse-cdn.com/v4/letter/b/8c91f0/32.png) [@brown22](https://forum.kirupa.com/u/brown22)
#### Post date: [December 17, 2009, 4:10am UTC](https://forum.kirupa.com/t/loading-external-swf-movie-problem/301873/1 "2009-12-17T04:10:55Z")

</div>

Hi guys,

I have a main movie with 4 menu buttons to load external movies. I managed to load an external movie but the problem is that the menu movie is showing underneath and I would like it to be invisible or not showing while the loaded movie plays.  
Is there something I should be doing?

any help would be appreciated. Here’s the code from the main menu,fla

Bruno

stop();

var myLoader:Loader = new Loader()  
myClip.addChild(myLoader)

prevButton.addEventListener(MouseEvent.CLICK, prevButtonClick);

function prevButtonClick (e:MouseEvent):void  
{  
myLoader.load(new URLRequest(“prevalence.swf”))

}
