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.