I am feeding the key from KeyUp()/KeyDown() in an applet to a Robot's KeyPress()/keyRelease() through UDP to "synchronize" the inputs of two users. However, the key codes appear to be mismatched - A "k" on the client end produces a "+" on the server end. Is there some way to convert between the two types?
Solved - I wasn't using a KeyListener, just native applet methods, so it wasn't using VK constants.