create un movieclip (instancia:clip), adentro de el has una animacion, mmmm, de unos 10 frames + -, y ponle un stop() al inicio y al final
luego usaeste codigo:
Código PHP:
clip.onRollOver = function() { this.gotoAndPlay (2); };
clip.onRollOut = function() {
this.onEnterFrame = function () {
this.prevFrame();
if (this._currentframe==1) {
trace ('termino');
delete this.onEnterFrame
}
}
}
Suerte!