# Will this code work?

**URL:** https://forum.kirupa.com/t/will-this-code-work/6047
**Category:** flash
**Created:** [September 28, 2002, 7:19am UTC](https://forum.kirupa.com/t/will-this-code-work/6047 "2002-09-28T07:19:12Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![me45](https://avatars.discourse-cdn.com/v4/letter/m/f14d63/32.png) [@me45](https://forum.kirupa.com/u/me45)
#### Post date: [September 28, 2002, 7:19am UTC](https://forum.kirupa.com/t/will-this-code-work/6047/1 "2002-09-28T07:19:12Z")

</div>

When loading into a “container” created via script, can I make multiple containers for movies in different areas of the stage?  
Here is the code, it is not working.

on (release) {  
events.onPress = function() {  
\_root.createEmptyMovieClip(“container3”, 2);  
loadMovie(“fiddlesticks.swf”, “container3”);  
container.\_x = -174;  
container.\_y = -216;  
};  
}

It is assigned to a button in a MC that is loaded into my main MC.

The other buttons that do work have a code of:  
on (release) {  
loadMovie(“gallery1.swf”, “/holder”);  
}

I have one MC that is dimensionally to large for the “holder”, so I want it to load over the holder.

Thoughts??? Anyone…
