PDA

View Full Version : why doesnt this work?


xeno439
05-03-2006, 04:44 PM
on (release) {
gotoAndPlay(nextFrame);
}

but this works fine
on (release) {
gotoAndPlay(5);
}

Is it a Flash 8 thing?

Thanks

devilmaycry
05-03-2006, 04:56 PM
well nextFrame is a function and not a proprety :)
so you call nextFrame();

xeno439
05-03-2006, 05:05 PM
thanks