Tagged Questions
The keyrelease tag has no wiki summary.
7
votes
7answers
2k views
How to know when a user has really released a key in Java?
(Edited for clarity)
I want to detect when a user presses and releases a key in Java Swing, ignoring the keyboard auto repeat feature. I also would like a pure Java approach the works on Linux, Mac ...
2
votes
2answers
1k views
OpenGL/Gtkmm game - keyboard moving
I am programming a game in "OpenGL" and using "Gtkmm" as a window manager. I want to use the keyboard to camera moving (thus, "UP-key" to move forward, "DOWN-key" to move backward, etc...)
Some time ...
1
vote
1answer
318 views
A Ruby module to simulate key press and key released events?
I want to create a application that simulates various users but I need this "ghost" users to type on the keyboard, how to I simulate a keypress and keyrealease events on Ruby?
0
votes
0answers
63 views
Why does my program recognize a key as being released while it's still held down, despite me using code to workaround the existing keyRelease bug?
I realize that this question has been asked before, and I even tried to implement a solution for it: http://stackoverflow.com/a/4679195/596359. This did not work however, and therein lies my problem.
...
0
votes
1answer
221 views
QT: When to use QT::keyRelease
I'm writing a test app that tests another application with a bunch of menus. I simulate keyPresses by using QT::keyPress. However, at some point it doesn't accept keyPresses anymore, until I learned ...