Tagged Questions
0
votes
0answers
67 views
Keypress not responding [closed]
So I have this code and when I run it I should be able to move the player in the move class, but for some odd reason the keypresses are not even being detected. I can tell because the console never ...
0
votes
7answers
407 views
activate event with a keypress
I am trying to find a sulotion to translate the void keypressed from c# to java without any succes yet anyone a sulotion?
I want when i press the key 13(enter) that Private void doen() activates ...
0
votes
3answers
686 views
handle multiple key presses ignoring repeated key
I had asked this in the comments section of another question (> How do I handle multiple key press in java?), and was asked to make a new question altogether.
My problem is that when I create an ...
4
votes
3answers
141 views
Inconsistent keyPressed event: sometimes fires, sometimes doesn't, restart the program without changing anything and it might or might now work
Okay, so I'm pretty frustrated here.
This piece of code here is just a very simple moving JComponent.
What's odd is how, when I'm changing absolutely nothing, the keyPressed event will be incredibly ...
1
vote
1answer
237 views
How do I use the KeyListener interface?
I am just starting to use the KeyListener interface. I want to create a very simple console application. I would like the program to print "hi" if I ever press the key 'ENTER'. Unfortunately, due to ...
6
votes
3answers
5k views
jpanel keylistener
yet another java question.
I am trying to add a key listener that holds a jtabbedpane.
it should switch the tabs when ctrl + tab is received.
but the keypressed event is never sent
I tried adding ...
0
votes
1answer
1k views
OnKeyboardActionListener android keys
I'm trying to implement a way to know when there is a press and a release of a key on a soft keyboard. I have used the onKeyListener to get the down and the up of the key, but the problem with that ...