PDA

View Full Version : problem playing second nested mc after first nested mc finishes?


tiny_the_cat
06-13-2006, 06:44 AM
Hi all,

I am very new to action script - I am sure there is a stupidly simple way to do this:

I have an mc named logoclip. Within logoclip, I have one mc (instance: logointro) nested in frame 1(label: logoin) and one mc (instance: logogrowth) nested in frame 2 (label:logogrow). After the first mc finishes I want the second mc on frame 2 to play. The first mc is tweened with actionscript with the final tween finishing after 132 frames.

I'm not sure what the best way is to do this. Any suggestions?

Cheers

wikiped
06-13-2006, 07:04 AM
I think the way to do it is put ...

this.onEnterFrame = function();
gotoAndStop ("scene 1", "logogrowth");
}

on frame 132 of that movieclip.
not sure if it's right but i think it should work, if it doesn't play around with it for a bit.