Auto loadMovie commands

how can i have an external swf automatically load into a blank movie clip on a stage when the stage first loads?

Put this on yer container clip:

on(load){
this.loadMovie(“yourmovie.swf”);
}

Ooh, and I love your Avatar btw…

**i tried that but for some reason its gettin this error: **

Scene=Scene 1, Layer=Layer 1, Frame=1: Line 1: Invalid mouse event specified.
on(load){

Scene=Scene 1, Layer=Layer 1, Frame=1: Line 2: Statement must appear within on/onClipEvent handler
this.loadMovie(“home.swf”);

Scene=Scene 1, Layer=Layer 1, Frame=1: Line 3: Unexpected ‘}’ encountered
}

Sorry, my bad, it should be:

[AS] onClipEvent(load){
this.loadMovie(“yourclip.swf”);
}
[/AS]

cool thx