Как вариант с проигрыванием в обратную сторону
Код:
MovieClip.prototype.p_prevFrame = function() {
this.onEnterFrame = function() {
if (this._currentframe == 1) {
delete this.onEnterFrame;
} else {
this.prevFrame();
}
};
};
button_mc.stop();
button_mc.onRollOver = function() {
this.play();
};
button_mc.onRollOut = function() {
button_mc.p_prevFrame();
};
Да ещё в последнем кадре мувика поставить stop();