Hello eveyone.
I'm having trouble with simple controls in my game related to pressing multiple keys at once.
My character can jump, move left or right, and hover using a jetpack. With the code I have so far if I press and hold right to walk, then press and hold space to jump, then press and hold up to hover it works fine, BUT when I try walking left and doing the same thing, it doesn't hover. Basically, if the user is pressing/holding all three keys at once it messes up (when walking left). It's like flash can't register all of the key presses at once. I'm thinking I might have to use keyListeners to fix this, but I don't want to recode everything.