The new forums will be named Coin Return (based on the most recent vote)! You can check on the status and timeline of the transition to the new forums here.
The Guiding Principles and New Rules document is now in effect.
Not quite sure I completely understand, but you could just store the current frame as a variable at the end of each frame and then check the previousFrame variable in the next frame.
So at the end of any actionscript in every frame have
{[i]whatever[/i]
}
previousFrame=_currentframe;
then in whatever frame you want to check the value of the previous frame, just call the previousFrame value:
if (previousFrame == 6){
doronronronyoudoronron;
}
Posts
So at the end of any actionscript in every frame have
then in whatever frame you want to check the value of the previous frame, just call the previousFrame value: