PDA

View Full Version : use nextFrame(); to jump 2 frames


alexmak
11-22-2003, 11:58 PM
is that possible to use nextframe(); to jump to Fame#3 from Frame#1?

Billy T
11-23-2003, 04:01 AM
umm can you explain exactly what you want to do? Otherwise I might insult your intelligence by suggesting

gotoAndStop(3);

also check out the _currentframe property

;)

hahaflasher
11-24-2003, 05:14 AM
gotoAndStop(_currentframe +2);

cobo
11-24-2003, 07:27 AM
if you want to go on with nextFrame(); at Frame 3 write...

Frame 1:

gotoAndPlay(3);

Frame 2:

whatever you like

Frame 3:

nextFrame();

and so on...

cobo

PS: Check your Refrence by pressing F1