A number linked with specific key on keyboard in JavaScript language. May be different for one key depending on browser.
0
votes
2answers
372 views
Keys enumeration, not returning ASCII equivalent for all punctuation
I have the following key handler:
void Form1::texBox_KeyDown(System::Object^ sender,
System::Windows::Forms::KeyEventArgs^ e) {
//New lines in response to suggestion of using ...
2
votes
2answers
476 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?
0
votes
2answers
197 views
jQuery: Make specific keycode's acceptable for an input
How can I make a custom validator for an input which accepts only numbers, backspace and full stop. That's keyCode's 47-59, 8 and 190.
I would image it would be something like:
...
3
votes
1answer
3k 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 ...
4
votes
1answer
704 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 ...
1
vote
2answers
4k views
event.keycode not returning correct values in firefox
I am trying the following code for triggering a js method when space-bar is pressed within an input box.
<input id="j1" />
$('#j1').keypress (function (event){
alert(event.keycode)
...
0
votes
1answer
81 views
If AI presses buttons - what buttons to press (key codes)
I'm programming an android game, where AI, like human, "presses buttons" - sends key events (KeyUp and KeyDown). I know, that there are some instrumental buttons like turn off, menu, etc. I'm using ...
2
votes
4answers
1k 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 ...
0
votes
1answer
663 views
Android keycode_back closes application
I want the back button on the android phone to act like the back button for my web browser. At present, it closes the application instead of going back to the previous screen.
I wrote this ...
-2
votes
1answer
252 views
Key code value send jquery
Everything is going fine jst a little bit mistake only
when i press enter it will send the value througn $.post(). after success the page refreshes why so
and if i use some other keycode it will ...
-3
votes
2answers
267 views
Common Keycode For Screenshot in Javascript
Looking for a place that has the most common key code combination used for taking screenshots in Javascript. I know this is ultimately impossible to stop but I am trying to prevent screenshots from ...
1
vote
1answer
379 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:
...
0
votes
1answer
294 views
Flash: KeyboardEvent keycodes work in Flash Player, but not the browser
I'm using ActionScript to listen for key presses and route to a method to handle them. It works fine in Flash Player Debugger 10.1, but does not work with the SWF in a browser.
I've tried it with ...
2
votes
3answers
2k 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
53 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 ...
4
votes
1answer
2k 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 ...
0
votes
4answers
1k views
event.which doesnt workin in Firefox
I want a script to verify if the keypressed is 'spacebar', keycode 32. I noticed that IE uses another function names.
I tryed a lot of solutions found here and this:
event = event || window.event // ...
0
votes
2answers
637 views
Disable keydown shortcuts if input(s) is focused
I have few inputs which you focus them using keycodes.
I am trying to: when focus on inputs, disable the keycodes function and when not focused, enable.
I tried this:
var hotkeys_function = false;
...
0
votes
1answer
1k views
keycode 13 and keycode 10 not working
keypress 13 and 10 not working on iphone safari, android firefox but working with android default browser.
I have a jsp page which has a form which that takes a number as input and changes values of ...
0
votes
1answer
3k views
Doubt with KeyEvent.KEYCODE_BACK in Android
I have 3 activities.
1st activity has a 'go right' image button. (to move to 2nd activity)
2nd activity has both 'go right' and 'go left' image buttons. (to go back to 1st activity or move to 3rd ...
0
votes
1answer
395 views
GWT: Detect if Spacebar is held down during ClickEvent
I've extended a label in GWT and added a clickEvent. Right now I have it successfully detecting if Control or Alt was held during the click on the label, but ideally I want to have it check if ...
3
votes
2answers
2k 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 ...
2
votes
2answers
2k 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:
...
0
votes
1answer
503 views
IE9 control keyboard buttons
I am trying to make form submit with TAB button.
It is working on FF, IE8, but on IE9 i cannot stop default action.
I found the answer here: How do I convert Enter to Tab (with focus change) in IE9? ...
6
votes
4answers
6k views
How can I convert a key code into a char or string?
How to convert the keycode in to char or string??
here is the example code:
public boolean onKey(View v, int keyCode, KeyEvent event) {
// TODO Auto-generated method stub
...
1
vote
0answers
67 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 ...
2
votes
2answers
6k 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 ...
1
vote
5answers
1k 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 = ...
2
votes
1answer
585 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?
0
votes
2answers
960 views
Objective-C/Cocoa: get key code
hi
to set my applications hotkeys i need to convert a character into its keycode. how is that possible?
i have multiple checkboxes for the modifier keys and a small textfield for the key. but im sure ...
1
vote
2answers
1k views
Translate Keys to char
I want to translate a given set of System.Windows.Forms.Keys and a System.Windows.Forms.InputLanguage to the corresponding System.Char.
Tried some experiments with MapVirtualKeyEx, but there is now ...
0
votes
3answers
1k views
Key code for <> signs for java robot class?
can you tell me the keycodes for Java Robot class.
For example, to press Enter we use:
a.keyPress(KeyEvent.VK_ENTER);
a.keyRelease(KeyEvent.VK_ENTER);
I want to press these sysmbols > ...
2
votes
1answer
594 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
3answers
27k views
android - setOnClickListener;
I have been messing around with the Snake example code and I am trying to mod this for the sake of training, and hopefully increased understanding of how Android works.
So far I have added two ...
1
vote
0answers
1k views
How to disable search key and camera key while displaying menu?
I've created a menu in my one activity as follows:
/menu/my_menu_list.xml
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
...
5
votes
3answers
3k 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?
0
votes
1answer
192 views
jQuery How to create and fire dynamic hotkeys (keycode and :not() selector?)
I have a web app that I'm working on that I would like the user to be able to define and trigger hotkeys dynamically. I hope someone can help me out?
I've created a JSFiddle HERE with the pertinent ...
0
votes
5answers
2k views
More efficient way of screening KeyCodes on KeyDown Event
I'm trying to fire an event perform some work when the user tries to enter only useful data into a form-field using the KeyDown event. But, I keep getting false alarms because the KeyDown event works ...
1
vote
1answer
281 views
What's the purpose of VK_PRINT?
While processing keys I assumed that the virtual key VK_PRINT (0x2A) is the print key on my keyboard. But this assumption was false. I need to work with VK_SNAPSHOT (0x2C) which is VK_PRINT+2. But ...
4
votes
8answers
3k views
document.location.href not updating onkeypress in sharepoint
I have an issue with a page redirect function executing when accessed by the enter key. Basically, onkeypress=Enter or when Search is clicked the page should redirect to a preset url and append a ...
1
vote
6answers
709 views
How to trigger keyboard click event on a text field using jquery
I want to click enter instead of submit button and I want jquery to do the exact same task as if I were clicking the submit button.
This is what I have but its not working
the jquery
...
2
votes
1answer
775 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 ...
0
votes
2answers
237 views
Apple script: need some help
I'm trying to make a simple applescript which doesn the following:
Switch to Microsoft Word
type *
press paste (command v)
press return
I came up with this but it won't work... Any ideas why??
tell ...
1
vote
2answers
442 views
JavaScript key undefined in IE over SSL
I'm working on a web app that works fine inside the LAN using HTTP but when I test it remotely over SSL it fails for IE (7 & 8). Firefox, Camino and Safari all work perfectly.
I've tracked down ...
13
votes
4answers
15k views
FULL list of JavaScript keycodes
I would like a complete list of the JavaScript keycodes. The lists I found whilst searching with google were not complete and only contained the major keys.
11
votes
7answers
14k views
Convert to uppercase as user types using javascript
I want to convert lowercase chars to uppercase as the user types using javascript. Any suggestions are welcome.
I have tried the following:
$("#textbox").live('keypress', function (e) {
if ...
3
votes
4answers
4k views
javascript keycode allow number and plus symbol only
Hi i have this javascript function that is used to force user only type number in the textbox. Right now and i want to modify this function so it will allow the user to enter plus (+) symbol. How to ...
0
votes
1answer
577 views
Android detect parenthesis and special character input, before api 11
I have a screen where I want the user to only input numbers in the text field. I already force a number pad to open in Android, and I am detecting numbers based on their ascii value.
I am ...
3
votes
1answer
2k views
javascript differentiate bewteen 'Enter' and 'Return' keys
Some desktop apps treat the 'carriage return' key and the (numpad's) 'enter' key differently. I've noticed that these two keys generate the same keyCode (13) in Javascript (jQuery).
Are they ...
0
votes
4answers
3k views
only allow numbers and fullstop (period) in textbox
I know that the following code blocks the usser from ussing spaces in a textbox however how do i allow the user to only use numbbers and a fulstop (so i can add values like 1.5)
Private Sub ...

