How To Import Swf Into Another Swf?

I want to import a small swf into my main swf.

I tried this 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:

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