0
votes
1answer
33 views
Send a key press to an active app problem
I want to send keypresses from c# app to an active app (in my case Frets on Fire). The problem is that my code is working with most apps I tried, but not with the actual app I'm ai …
0
votes
2answers
31 views
How to stop repeated keyPressed() / keyReleased() events in Swing
So the problem that I am having appears to be a bug that occurs only on Linux. I'm trying to have my swing app record when a key is pressed down, then to detect when that key is re …
0
votes
2answers
68 views
How to prevent Jquery keydown/keyup events returning multiple events when a key is mapped to multiple characters?
$(document).ready(function() {
$(document).keyup(function(e) {
alert('This key: ' + e.keyCode);
});
});
If an individual key is mapped to multiple characters, the …
0
votes
1answer
42 views
Try to implement global keyboard shortcut in MDI parent/child form and other form by using ProcessCmdKey
I override ProcessCmdKey() in my MDI parent form class and have some keyboard shortcut calling method in same class. But I wish to make these hotkeys working in parent/child form a …
0
votes
2answers
25 views
How to raise mouse and keyboards events in JS
Is there a way to send mouse events and keyboard events in JavaScript?
Does all browsers support this need?
-Datte
0
votes
0answers
15 views
intercepting keystrokes in OSX
I'd like to be able to listen to keystrokes systemwide in OSX to implement an utility like AHK on windows (the shortcuts part of AHK anyway), recognizing not only simply combinatio …
2
votes
5answers
391 views
Is there a cross-platform python low-level API to capture or generate keyboard events?
I am trying to write a cross-platform python program that would run in the background, monitor all keyboard events and when it sees some specific shortcuts, it generates one or mor …
1
vote
9answers
3k views
How to get keypressed, keydown events from DataGridView data cells
Hi.
I need to recieve the key press events during cell editing in DataGridView control.
From what I have found on the net the DataGridView is designed to pass all key events from …
1
vote
1answer
53 views
Move focus in response to keyboard events in XAML
I've got a WPF view with two textboxes. I'd like to automatically move focus forward from the first textbox to the second when the user hits the down arrow on the keyboard exactly …
2
votes
2answers
37 views
Forcing javascript keyboard event inside a textarea on IE
Hi
I'm trying to force a keypress inside a textfield using javascript. This has to work specifically on IE but it simply doesn't work.
Can anyone help me?
My test script is this …
0
votes
2answers
69 views
Intercept media keys on ASUS laptop
Hello,
I have an ASUS laptop (F50SF) and I was playing around in C++ trying to intercept the multimedia keys (next track, previous track, play/pause, etc.), but I cannot figure ou …
3
votes
3answers
172 views
Shift+Ctrl+0 key combination not seen by application on Windows Vista
I start with a new Delphi VCL application, add Menus to the uses clause, drop a label on the form, and assign the form's OnShortCut event:
procedure TForm1.FormShortCut(var Msg: T …
1
vote
8answers
247 views
How to respond to password prompt when using SCP in a shell script?
First of all, I am well aware of that there are many of questions regarding this topic. I have read them, but still could figure out an appropriate answer for my situation.
I woul …
0
votes
1answer
55 views
How to handle KeyEventArgs in Custom PasswordBox for WPF
I am trying to create a new PasswordBox, and I have derived from TextBox class and I intend to handle onkeyup event by myself to display all astrix and store password in internal s …
1
vote
0answers
136 views
How to hook IE keyboard event?
I am trying to disable browser shortcuts while user tries to press some combination of keys on the swf file. Although I can achieve this in firefox, below code does not function in …
