Hey guys. I have a question for you. I want to make a flash presentation, but my script doesn't work for some reason. I want to make that if you press Key.RIGHT, you go to frame 2, but if you press Key.LEFT, you go to frame 2. This is the script I put in:
onEnterFrame = function(){
if(Key.isDown(Key.RIGHT)){
gotoAndStop(2);
}
}
{
if(Key.isDown(Key.LEFT)){
gotoAndStop(1);
}
}
Can you write a new fixed one please?
Thanks Newgrounders!