PDA

View Full Version : "loadClip to Frame 10" HOW?



rvg
October 22nd, 2006, 11:29 PM
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 :P ) and in the frame nš10 , skipping the first nine frames.

Is that possible ??

tkx

rhamej
October 22nd, 2006, 11:43 PM
Just put this in frame 10

ActionScript Code:


myMCL.loadClip("DramNoticias.swf", 20);

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:

gotoAndPlay(10);