[AS2] Help! How to import *.swf into *.fla?

Using Actionscript 2

main.swf (size = 800X600)
small.swf (size = 300X255)

How can I insert this “small.swf” into my page, the result I want is “small.swf” will show within the main page?

I tried the code below, but it just show “small.swf” outside the page, this is not I want.

onClipEvent (load){
_root.loadMovie("small.swf");
}

Anyone can help?

Please!

try this


loadMovie("small.swf",1)

you could also place an empty movieclip on the stage give it an instance name and use this


someMc.loadMovie("small.swf")

“someMc” would be the instance name you gave the movieclip.

Thanks for the reply.
I tried, can see the page, but can’t load “small.swf”

onClipEvent (load){
small_Mc.loadMovie("small.swf");
}

why do you have it on an onclipEvent?