Originally Posted by mr_malee
its gotta be one of those other keyboard type. Otherwise the creator was on crack.
How about letting people customise their controls, using a key.isDown event accepts a variable, so set your variables up like so:
player1.keys = {left:Key.LEFT, right:Key.RIGHT, down:Key.DOWN, up, Key.UP}
plaer2.keys = ...
you then simply use
if(Key.isDown(player1.keys.left)) //move left
which now lets you set the different keys
player1.keys.left = A
its usually best to give the player simply two buttons two choose from which change the control scheme, like from WASD to Direction keys. Or in your case EABC, rather than individually setting buttons, i hate doing that.