PDA

View Full Version : loadMovie


HairRaiser
11-30-2003, 08:34 AM
Hi. Is there a way to play directly to a particular frame/label on a loaded movie?

Tnx

pellepiano
11-30-2003, 08:56 AM
Yes.

containerMC.gotoAndPlay("frameLabelName");

...or if using _levels....

_level2.gotoAndPlay("frameLabelName");

HairRaiser
11-30-2003, 09:59 AM
Tnx a lot. I'll try it out.

HairRaiser
12-02-2003, 11:25 AM
Hi.

I tried using the _level2.gotoAndPlay("label1");

it worked because it's the first frame.

What if there's ("label2"); thereby skipping ("label1");

is there a way to wait for the .swf to load then use this:

_level2.gotoAndPlay("label2")?

The .swf is a bit big so it needs time to load.