Trying to externally load from a movie clip

Hi ok so I am trying to externally load a SWF from a movie clip and load the swf on the main timeline.

So basically it goes timeline >> MC >> Button and when they click the button it should load the swf on the main timeline.

This is the code that i am using (from kirupas tut)

but.onLoad = function () {
_root.createEmptyMovieClip(“container”, 1);
_alpha.but = 0;
}
but.onPress = function () {
_root.createEmptyMovieClip(“container”, 1);
loadMovie(“iface1.swf”, “container”);
container._x = 25;
container._y = 141 ;
}

Can anyone help?

Thanks.

maybe
[AS]
but.onPress = function () {
container = _root.createEmptyMovieClip(“container”, 1);
container.loadMovie(“iface1.swf”);
container._x = 25;
container._y = 141;
}
[/AS]

Still didnt work…Does anyone else have any ideas?

Again its a button inside a movie clip that needs externally load on the main movie clip…over it.

Please help, hope i was clear.

Mucho Love

Aaron

ok. here ya go.
attaching the .fla (mx-format)