/ Published in: ActionScript
Expand |
Embed | Plain Text
stop(); var roll:Boolean = false; this.onRollOver = function() { roll = true; }; this.onRollOut = function() { roll = false; }; this.onEnterFrame = function() { if (roll == true) { this.nextFrame(); } else { this.prevFrame(); } };
You need to login to post a comment.
