scusate, ho fatto questo script:

onClipEvent (enterFrame) {
someListener = new Object();
someListener.onKeyDown = function() {
if (Key.isDown(Key.LEFT) || Key.isDown(Key.UP)) {
_root.prevFrame();
} else if (Key.isDown(Key.RIGHT) || Key.isDown(Key.DOWN)) {
_root.nextFrame();
}
};
Key.addListener(someListener);
}

ho provato a metterlo anche dentro un frame, ma non funziona per niente, vorrei andare avanti di ogni frame semplicemente con i tasti della tastiera, ma dovè che sbaglio?