Para ir hacia adelante no hay problema. Con un simple
play() ya basta. Para ir hacia atrás, debes crear una función. Prueba con esto:
Código:
function inversa() {
this.onEnterFrame = function() {
if (_root._currentframe>1) {
_root.prevFrame();
} else {
delete this.onEnterFrame;
}
};
}
adelante_btn.onRelease=function(){
_root.play();
}
atras_btn.onRelease=function(){
inversa();
}
Obviamente este código va en acciones de fotograma de la línea principal y en tal escenario hay dos botones con nombres de instancia
atras_btn y
adelante_btn.