puedes usar la clase
Key crea tus diferentes frames, luego le pones un
stop(); a todos y en el primer frame pones algo asi:
Código PHP:
stop();
someListener = new Object();
Key.addListener(someListener);
someListener.onKeyUp = function () {
var tecla = Key.getCode();
if(tecla == Key.LEFT){
_root.gotoAndStop(_root._currentframe - 1);
}
if(tecla == Key.RIGHT){
_root.gotoAndStop(_root._currentframe + 1);
}
trace(tecla);
}
Have funnnnnn