Tagged Questions
The keycode tag has no wiki summary.
7
votes
4answers
2k views
What is the keyCode for left and right ctrl key?
I'm coding a function in jquery that executes if ctrl+R is pressed but I can't seem to find out what the left and right ctrl keycodes are....can someone please help?
UPDATE
///this works
...
5
votes
4answers
564 views
What is the C# equivalent of ChrW(e.KeyCode)?
In VB.NET 2008, I used the following statement:
MyKeyChr = ChrW(e.KeyCode)
Now I want to convert the above statement into C#.
Any Ideas?
5
votes
3answers
643 views
Ctrl+- (Ctrl+Hyphen-Minus) as ShortCut Key?
It might seem natural to use Ctrl + +, Ctrl + -, and Ctrl + 0 as shortcuts for an application's zoom in, zoom out, and restore default zoom (typically 100 %) actions. Now, in Delphi, I am able to ...
5
votes
4answers
767 views
IE e.keyCode - How can I differentiate between ampersand and up-arrow?
I am fighting with a very strange javascript behavior on a jQuery UI widget I'm trying to fix.
IE7 (win XP), jQuery 1.2.6 (yes, it's an old version).
The widget is a combo-box, which captures ...
4
votes
2answers
43 views
How to have “jQuery.Event” work on Firefox?
I'm writing a script which triggers an artificial keydown event with keyCode 37 when
button is clicked.
The following script works fine on IE, Safari, and Chrome, but it doesn't work on Firefox and ...
4
votes
2answers
882 views
I have a problem with keydown event and autocomplete in Firebox on mac
This is driving me nuts. Its a tough one to explain but Ill have a go.
I have one input text field on the front page of my site. I have coded a keydown event observer which checks the keyCode and if ...
4
votes
2answers
2k views
How to convert ASCII character to CGKeyCode?
I need a function that, given a character, returns the CGKeyCode associated with the position of that character on the current keyboard layout. E.g., given "b", it should return kVK_ANSI_B if using ...
3
votes
1answer
207 views
Java: Register <ENTER> key press on JTextPane
I'm making an application with java that has a JTextPane. I want to be able to execute some code when the enter key is pressed (or when the user goes to the next line). I've looked on the web and not ...
3
votes
2answers
200 views
How to trigger backspace on a textfield?
Say I have this:
<textarea id="myarea">Hello</textarea>
How would i trigger backspace on that textarea possibly using trigger() and key codes. The code for backspace is 8.
And i am not ...
3
votes
3answers
1k views
Jquery: detect if middle or right mouse button is clicked, if so, do this:
Check out my jsfiddle demo, if e.which == 1 then when you left click the h2 it will
e.which == 2 or e.which == 3 then it wont work. 2 is the middle mouse button, and 3 is the right mouse button. i ...
3
votes
3answers
2k views
How to know if .keyup() is a character key (jQuery)
How to know if .keyup() is a character key (jQuery)
$("input").keyup(function() {
if (key is a character) { //such as a b A b c 5 3 2 $ # ^ ! ^ * # ...etc not enter key or shift or Esc or space ...
3
votes
3answers
2k views
Javascript HTML5 Capture keyCode and write to Canvas
I'm writing an application in which I need to simulate a textarea. The only way I know how to approach it is to capture the keyCode on a key event. How would one go about taking that keyCode and, ...
3
votes
3answers
647 views
jQuery keyup keyCode doesn't work in Opera
Is it possible that the opera browser ignore the keyCode 40 (arrow down)?
$('#test').keyup(function(e) {
$('body').append('' + e.keyCode + '');
})
Test it at: ...
3
votes
4answers
331 views
Capture *all* display-characters in JavaScript?
I was given an unusual request recently that I'm having the most difficult time addressing that involves capturing all display-characters when typed into a text box. The set up is as follows:
I have ...
3
votes
3answers
11k views
Get Character value from KeyCode in Javascript…then trim
This is what i have now:
$("input").bind("keydown",function(e){
var value = this.value + String.fromCharCode(e.keyCode);
}
If the e.keyCode may not be an ASCII character (alt, backspace, del, ...
2
votes
6answers
114 views
What is the KeyCode for “,”(comma) and “.”(dot) in .NET?
In my KeyDown EventHandler I need to know what is the KeyCode for "," and ".".
I can't find them thats why I ask. Thanks!
2
votes
1answer
43 views
What is the keycode for “Shift + Arrow key”?
I want to write a script which triggers an artificial keydown event (Shift + Arrow key) when button is clicked in jQuery.
$('button').click(function(){
$('body').trigger(jQuery.Event('keydown', ...
2
votes
1answer
58 views
Get Unicode character from onKeyDown event in android
I want to get Unicode character when I input into soft keyboard (I use key down event).
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
//I tried this but not work
...
2
votes
3answers
139 views
jQuery Trigger keyCode event for reverting or repeat actions in input/textarea elements (wysiwyg)
i was wondering how do i trigger the event keyCode composed by Ctrl+z and the event keycode composed by Ctrl+Shift+z ?
2
votes
1answer
163 views
Send NSEvent to background app
I need to send the key combo ^⌘C to a background app with the bundle identifier com.company.app. The key combo should then activate a menu item in that application.
Unfortunately, I have no clue how ...
2
votes
4answers
196 views
ASCII character from VK_Code
I have a small WIN32 C-Application in which i work with the KBDLLHOOKSTRUCT structure. This structure contains the VK-Code for a pressed key.
I try to convert this to an ASCII-Character. For this i ...
2
votes
2answers
287 views
JavaScript Key Codes
I'm working with a JavaScript routine I didn't write. It is called from a text box's onkeydown attribute to prevent unwanted keystrokes.
The first argument is apparently not used. The second argument ...
2
votes
1answer
258 views
Firefox 4 and Keycode for special characters
So in Firefox when i do a key combination like: SHIFT + "," which would equal "<" the key code comes back as '0'. Same thing is true for keys: "." ">" and many others. Anyone have any ideas?
2
votes
1answer
226 views
jquery keyup ignore non-changing characters
I'm trying to get an event to fire whenever a contenteditable div is changed using keyup. Unfortunately it's also catching things like moving the caret with the arrow keys. I only want it to spot ...
2
votes
1answer
225 views
Chrome 10: KeyEvent or something similar to Firefox's KeyEvent
In Firefox 3.6 and 4.0 I can compare a KeyboardEvent's keyCode against predefined constants for keys stored inside of the global KeyEvent object (which is part of he DOM3 specification). KeyEvent is ...
2
votes
3answers
579 views
Javascript Shift+Enter (Firefox)
Had a look and found some things on this, but nothing seems to work as I'd like it.
Initially I had my solution working with internet explorer and chrome, but not firefox (which is unsatisfactory for ...
2
votes
2answers
146 views
press two continuous key to trigger an event in JavaScript
In Vim, you can press gg to go to the beginning of the document, Or press dd go delete the current line. How to implement similar behavior in a web page? I mean, in a web page environment, how can I ...
2
votes
4answers
668 views
event key code for ampersand?
I am trying to find the keycode for ampersand and underscore. I should not allow my users to allow to enter ampersands and underscores. I was taking a look at one list, and it mentions 55 as the ...
2
votes
3answers
4k views
How can I translate Linux keycodes from /dev/input/event* to ASCII in Perl?
I'm writing a Perl script that reads data from the infamous /dev/input/event* and I didn't find a way to translate the key codes generated by the kernel into ASCII.
I'm talking about the linux key ...
2
votes
5answers
2k views
How can I check the new value of a text field on keypress?
I have a single form field and I need to be able to detect when the field changes and execute some additional code using the new value of the field. I only want to execute the code if the key pushed ...
2
votes
5answers
3k views
get keyCode from string?
Using a static method in as3, I can get a charCode from a character in a string.
How can I get the keyCode from a character in a string? Do I need to run this function through javascript (if I can ...
2
votes
4answers
1k views
How do you determine if a character requires the shift key to be down to be typed?
I am writing some code to type strings using the Robot class. Everything is mostly good (well, I have to use a big switch statement to get character keycodes), except some keys don't have keycodes, ...
2
votes
1answer
1k views
Sending keycode to Xorg + wine with bash script
How do I send keycode to currently running application in linux which is running under wine? I would like the it to be under bash for simplicity.
2
votes
5answers
3k views
How to obtain the keycodes in Python
I have to know what key is pressed, but not need the code of the Character, i want to know when someone press the 'A' key even if the key obtained is 'a' or 'A', and so with all other keys.
I can't ...
2
votes
5answers
15k views
C# How to translate virtual keycode to char?
I am trying to map a virtual keycode to a char.
My code uses ProcessCmdKey to listen to WM_KEYDOWN which gives me access to the key pressed. For example, when I press single quote I get a key of 222 ...
1
vote
0answers
38 views
Keystroke in AppleScript maps numbers to those on keypad, which cause some problems
I need to send some keys to another program, and I tried keystroke in AppleScript. Everything worked well until I found that when I sent numbers to a Windows program running in Parallels virtual ...
1
vote
2answers
76 views
How to retrieve keyCode and charCode from a jQuery event object?
The javascript event object offers keyCode() and charCode() methods such that charCode() returns 0 for keys that don't cause a character to be displayed like enter, key up, key down, delete, ...
1
vote
1answer
49 views
Having trouble reading key events. (newby)
I'm trying to read a few of the keys on a device as well as read values from the touch screen. The touch screen is working fine, extracting values to _x and _y and sending them to my renderer class. I ...
1
vote
3answers
82 views
Combining keycode events in jQuery
I'm building a virtual keyboard in jQuery, using keycode events to tigger an append, but keycode combinations are throwing me for a loop. Here's an example:
I want to append a questionmark only when ...
1
vote
1answer
60 views
<element>.KeyCode is not working in some keyboards?
I am detecting the a pressed key (<tab> in this case) inside a text input box. Its ok while i'm coding. But when i test on different computer (a laptop, with same Firefox Version), it returning ...
1
vote
2answers
68 views
Catch “Command+R” in Safari with JQuery
I need to intercept the browser-reload-functionality in Safari (I know this is usually not something one should do, but in my case this makes sense).
For Windows I just do this:
...
1
vote
3answers
104 views
jQuery/JS Keycodes: Several keycodes in one IF statement
I'm trying to set up some keycodes for an app I'm working on but it really drives me crazy.
I'm trying to set up keycodes which would say, from keyCode 65 to 91 , 44 , 47 and few others, do function.
...
1
vote
1answer
103 views
How to convert a Windows native virtual key code to Qt::Key?
I am working on a program which communicates with a windows native program, so it needs the actucal native virtual key code. How to convert from a Windows native virtual key code to Qt::Key?
1
vote
1answer
153 views
What is the termcap code for the caret (aka circumflex) (^) key?
I want to remap the ^ key to <Esc> in VIM since it is easier to reach on a german keyboard. As far as I understand there is no keycode for the ^ key and I have to use the termcap notation:
...
1
vote
3answers
140 views
Where can I find numeric keycodes to use with keyPress command in Selenium?
At http://release.seleniumhq.org/selenium-core/1.0.1/reference.html there's description of keySequence parameter to keyPress command:
Either be a string("\" followed by the numeric keycode of the ...
1
vote
3answers
41 views
Jquery 'or' statment?
I would like for a text box to disappear if a person clicks out side of it (.focusout or .blur) but I also want to be able do the same function if Esc is pressed (key 27). I am not sure how to get ...
1
vote
1answer
236 views
KeyEventArgs.KeyData, KeyEventArgs.KeyCode and KeyEventArgs.KeyValue
I have question about the KeyEventArgs's KeyCode and KeyData and KeyValue.
KeyCode and Keydata are Keys type, but I don't know what the difference between them is. For KeyValue, I don't know what it ...
1
vote
2answers
246 views
jquery keypress event object keyCode for firefox problem?
jQuery keypress event for FireFox gives encrypted keyCode property for event object
after String.fromCharCode(e.keyCode) conversion but works perfect in Chrome.
Following is the javascript code:
...
1
vote
0answers
35 views
Firefox Extension preference window onsynctopreference Button
I have a XUL button that once clicked listens for a keystroke. When a keystroke is captured, it sets the label of the button to the keyCode of the keystroke. I want to save this value to the ...
1
vote
5answers
178 views
How to disable Enter/Return Key After a function is executed because of it?
I have this function where #text_comment is the ID of a textarea:
$('#text_comment').live('keypress',function (e) {
if(e.keyCode == 13) {
textbox = $(this);
text_value = ...