PDA

View Full Version : Making an MC Play with actionscript



Lewwy
September 22nd, 2006, 06:40 AM
I think at the moment, ive got something like


on(release){
_root.mc_test.play;
}

But it isnt working..

I also tried giving the mc an instance name of 'box' and instead of writing 'mc_test' I wrote box..

But it didnt work.

I have actually got a tween that animates the clip..

Thanks for any help.

-Z-
September 22nd, 2006, 09:36 AM
_root.mc_test.gotoAndPlay(1); will work,

Joppe
September 22nd, 2006, 10:27 AM
play();
it should be
not only play;