From: prafulka on
Hi All

How to goto 2 frame when i load movie clip in 1st frame(Movie clip have
animation of 50 frame)
which code i write in 50 frame (Movie clip) so i can go to in 2 frame

Thank you,
Praful Damania

From: Chris (mudbubble) on
hard to follow.
frame 2 of the main timeline or frame 2 inside your movie clip?
i think you want to go to frame 2 at the end (frame 50) of your MC right?

then add this to last frame of MC:

_root.gotoAndPlay(2);

******************************************
--> Team Macromedia
--> www.mudbubble.com
--> www.keyframer.com




prafulka wrote:
> Hi All
>
> How to goto 2 frame when i load movie clip in 1st frame(Movie clip have
> animation of 50 frame)
> which code i write in 50 frame (Movie clip) so i can go to in 2 frame
>
> Thank you,
> Praful Damania
>
From: Long_Dom on
If the abve fails, just remove the '_root'
in other words just type gotoAndPlay(2);
From: Chris (mudbubble) on
that wont work if the script is in the MC - you always have to target the timeline you want before
telling the playhead what to do - if you dont then the playhead will go to frame 2 inside the MC and
that is not what the original poster was asking how to do.

******************************************
--> Team Macromedia
--> www.mudbubble.com
--> www.keyframer.com




Long_Dom wrote:
> If the abve fails, just remove the '_root'
> in other words just type gotoAndPlay(2);
From: prafulka on
Thanks for reply

but my problam is in First Fream i load movie i.e.

loadmovenum ("abc.swf",1); this code i write in first frame
Please tell me how i got on frame 2 when abc.swf is over

thanks