Hi,
The last post only works with two frames, I suspect you have more so tryPHP Code:stop();
stage.addEventListener(KeyboardEvent.KEY_DOWN, pressAnyKey);
function pressAnyKey(event:KeyboardEvent)
{
switch (event.keyCode)
{
case Keyboard.LEFT :
prevFrame();
break;
default :
nextFrame();
}
}





Reply With Quote
