1
2
3
4
5
6
7
8
9
10
MovieClip.prototype.playhead = function(dir) {
 this.onEnterFrame = function() {
 if (dir == "ff") {
 this.gotoAndStop(this._currentframe+1);
 }
 if (dir == "rr") {
 this.gotoAndStop(this._currentframe-1);
 }
 };
};

Brug sådan her!

1
2
3
4
5
6
mc.onRollOver = function() {
 this.playhead("ff");
};
mc.onRollOut = function() {
 this.playhead("rr");
};

Copy paste det hvis du har lyst Smile