Link to home
Start Free TrialLog in
Avatar of Ozwald
Ozwald

asked on

Flash - Use Movie Clip frame to start other Movie Clip

I have a movie with 2 frames, each with a different Movie Clip.
I want frame 2 to automatically play when the frame 1 Movie Clip reaches a certain frame.
When I searched, the only info I could find was for preloaders.

Please help. Thanks.
ASKER CERTIFIED SOLUTION
Avatar of henryww
henryww

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I'm not sure if this is what I understand your problem,

So you have two frames, put stop() on each frame, then at a certain frame of movieClip 1 you could say gotoAndStop(2). Let's assume that there's no stop() script of each movieClip in frame 1 so it is automatically play. But if you have stop() on the first frame of each movieClip, then on frame 2 of the main timeline _root.movieclip2.play();

hope this help,

rexy
Avatar of Ozwald
Ozwald

ASKER

Perfect. Great to know both ways. Thanks, henryww.