"loadClip to Frame 10" HOW?

[LEFT]Hi ppl!

I need some help! I have a button that loads an .swf
on(release) {
_root.myMCL.loadClip(“DramNoticias.swf”, 20);
}

but i want to load the DramNoticias.swf on level 20 ( wich is already done :stuck_out_tongue: ) and in the frame nº10 , skipping the first nine frames.

Is that possible ??

tkx
[/LEFT]

Just put this in frame 10

 ActionScript Code:

 [FONT=Courier New][LEFT]myMCL.[COLOR=#0000ff]loadClip[/COLOR][COLOR=#000000]([/COLOR][COLOR=#ff0000]"DramNoticias.swf"[/COLOR], [COLOR=#000080]20[/COLOR][COLOR=#000000])[/COLOR];

edit: Or maybe you mean you want to skip the first 9 frames of the loaded swf.
If thats the case, in frame 1 of the loaded swf, just put

 ActionScript Code:
 [FONT=Courier New][LEFT]gotoAndPlay[COLOR=#000000]([/COLOR][COLOR=#000080]10[/COLOR][COLOR=#000000])[/COLOR];

[/LEFT]
[/FONT]

[/LEFT]
[/FONT]