Return to Snippet

Revision: 5762
at April 2, 2008 08:58 by sicbot


Initial Code
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();
	}
};

Initial URL

                                

Initial Description

                                

Initial Title
animated rollover

Initial Tags

                                

Initial Language
ActionScript