
Код:
MovieClip.prototype.p_prevFrame = function() {
this.onEnterFrame = function() {
if (this._currentframe == 1) {
delete this.onEnterFrame;
} else {
this.prevFrame();
}
};
};
использование

Код:
мувик_с_анимацией.onRollOver = function(){
this.play();
}
мувик_с_анимацией.onRollOut = function(){
this.p_prevFrame();
}