Scusami... lo script giusto è questo:
on (press) {
if (_root.filmato._currentFrame == 20) {
_root.torna = true;
_root.filmato.onEnterFrame = function () {
trace (_root.torna);
if (_root.torna==true) {
_root.filmato.prevFrame();
}
}
} else if (_root.filmato._currentFrame == 1) {
_root.filmato.play();
}
}
e sul prima frame dell'animazione:
_root.torna = false;
stavolta l'ho provato