PDA

View Full Version : Help with a GoTo action



alexguz79
July 21st, 2008, 11:54 AM
hey everybody...

as a relative new on this... i have to ask things that for me actually are stupids but can't figured out...

i have this document and a button on 1st frame that goto and stop a movieclip on frame 15

that movie clip is 150 frames long.... the thing is i want that the movie goto the original frame 1 when it gets to the frame 150 in the movie clip

i thought that this would do it:

gotoAndPlay('Scene 1', 1);

but doesn't work

can anybody help me please

Largo
July 21st, 2008, 11:59 AM
If it's inside of a MovieClip you don't need 'scene1', you just need gotoAndPlay(1);

alexguz79
July 21st, 2008, 12:07 PM
the action gotoAndPlay (1) is inside the movieclip and when it gets there should go to frame 1 of the entire movie not the frame 1 of the movieclip...

Largo
July 21st, 2008, 12:19 PM
Here you go: MovieClip(parent).gotoAndPlay(1);