En el ultimo frame, pones un stop() y tambien:
Código:
this.onEnterframe=function(){
if(_currentframe<=1){
delete this.onEnterFrame
}
else{
this.prevFrame()
}
}
Lo anterior funciona, si suponemos que quieres que se rebobine hasta el primer fotograma... pero ¿si no quisieras rebobinar hasta el primer frame?, yo uso esta funcion:
Código:
rebobinar = function (regresarHasta:Number) {
this.onEnterFrame = function() {
if (this._currentframe<=regresarHasta) {
delete this.onEnterFrame;
} else {
this.prevFrame();
}
};
};
Ejecución:
Eso suponiendo que quisieras rebobinar hasta el frame 10.
Facil.