I want to import a small.swf into main.swf.
I tried this code:
Code:
onClipEvent (load){
_root.loadMovie("small.swf");
}
it show only my small.swf but outside the mainpage, this is not I want.
I also tried this:
Code:
var myLoader:Loader = new Loader();
addChild(myLoader);
var url:URLRequest = new URLRequest("small.swf");
myLoader.load(url);
can see the mainpage, but can't load "small.swf"
Anyone can help?
best regards,
Mike