Will this code work?

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…