Although i will still be using AS2 to do all of my programming testing/beta versions, I would love to be able to translate it all into AS3 for the final product for two main reasons.
1) It's a lot faster
2) It's closer to an actual language like C++
So i am currently trying to change my platforming engine into AS3 right now and i am stumped on how to do my key presses.
How would i change this kind of code into AS3?
if(Key.isDown(Key.RIGHT)
if(!Key.isDown(Key.LEFT) && !Key.isDown(Key.RIGHT))
Thanks for the help!