modifica così lo script di grandeorco

if (_root.muovi == 1 && _currentframe < 8) {
this.nextFrame();
}
if (_root.muovi == 2 _currentframe > 1) {
this.prevFrame();
}
}

e nel bottone avanti:

on (press) {
_root.muovi = 1;
}
on (release) {
_root.muovi = 0;
}

nel bottone indietro:

on (press) {
_root.muovi = 2;
}
on (release) {
_root.muovi = 0;
}