
Код:
MovieClip.prototype.p_prevFrame = function() {
this.onEnterFrame = function() {
if (this._currentframe == 1) {
delete this.onEnterFrame;
} else {
this.prevFrame();
}
};
};
mc.onRollOut = function() {
this.p_prevFrame();
};
mc - мувик с анимацией