PDA

View Full Version : Hm.. Why doesnt this work?



Joppe
February 20th, 2005, 02:46 PM
I can't figure out why this doesn't work ..



on (press) {
_root.timer.gotoAndPlay("start");
_root.nextFrame
}


It's weird becouse the nextFrame is ingored and its just the timer who starts.. Is it me who did something wrong or... ???

-Joppe

superNoobice
February 20th, 2005, 08:11 PM
on (press) {
_root.timer.gotoAndPlay("start");
_root.nextFrame
}

put a () like this

on (press) {
_root.timer.gotoAndPlay("start");
_root.nextFrame();
}

Joppe
February 21st, 2005, 09:57 AM
:P Oops! I forgot .. Thank you SuperNoobice! Thank you.. (-: