1
vote
1answer
12 views

Key Listener not detecting Keys

I am having trouble with my Key Listener, it is not detecting any keys at all. I might have complety messed it up or hopefully just be missing something simple but i just cant see it. Any help would ...
0
votes
0answers
54 views

JAVA - Adding a keylistener to open a 'pop-up' menu

I'm trying to make a Java game and am interested in having some menu pop up when you press the escape button. I'm thinking the best way to be to implement a keylistener to something but I'm not sure ...
0
votes
0answers
41 views

Java Keylisteners and Key Bindings Speed Comparison

I'm currently working on a simple software synthesizer using the user's keyboard to control the pitch like a "piano." Problem is, I'm using a key listener and a massive switch statement for every key ...
2
votes
1answer
64 views

keyReleased function not restoring original Background color in java

When I press a key for some time, the background color of the key doesn't restore to original color in keyReleased function.What am I doing wrong. If you could redirect me to some site contain ...
1
vote
1answer
115 views

Read Key pressings in C ex. Enter key

I know how to use events to test where a key is pressed or not, but in C i never found how to do that. What i exactly want is a Keylistener that listens for the up, down, left and right keys. I need ...
-1
votes
1answer
249 views

KeyListener stop working with Action or Mouse Listenter?

I want to add KeyListener to get input through keyboard, so i add keyListener and implements its methods, but when i run that and press any key it works but in console it write something like this: ...
0
votes
1answer
1k views

KeyListener not working?

I'm having trouble with a KeyListener. I add the KeyListener to the JPanel that I create, but the KeyListener isn't working. My code for the main class is package client; import java.awt.Dimension; ...
2
votes
6answers
10k views

how can I detect arrow keys in java?

I know how to implement a key listener; that's not the problem. public void keyTyped(KeyEvent event) { if (event.getKeyChar() == KEY_LEFT) { cTDirection = LEFT; } if ...