Praticamente ho messo l'immagine che si muove, un movie, con due bottoni con:

per andare a destra:

on (rollOver) {
play ();
}
on (rollOut) {
stop ();
}



per andare a sinistra

on (rollOver) {
_root.indietro = true;
}
on (rollOut) {
_root.indietro = false;
}


Per il tornare indietro:

onClipEvent(enterFrame){
if(_root.indietro){
if(_root._currentframe > 2){
_root.gotoAndStop(_root._currentframe - 1);
}
}
}