Tagged Questions
2
votes
1answer
286 views
Android KeyCode Capital Letter?
I'm making a soft-keyboard using XML Keyboard like this :
<Keyboard xmlns:android="http://schemas.android.com/apk/res/android"
android:keyWidth="11.11%p" android:horizontalGap="0px"
...
0
votes
2answers
188 views
Converting a char(or string) to key value of it
I'm not sure if "key value" is correct word for it as there are few formats I believe, what im talking about is http://pastebin.com/XJVx1dB5 this is format where 88 is Z etc. I hope im clear.
I have ...
0
votes
0answers
148 views
Get shifted character for a key on the keyboard
I am making a quick little text input system, library agnostic, in c++ and I would like to get the corresponding shifted character value of a particular key code- is there a std:: function that does ...
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 ...
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 ...
2
votes
2answers
281 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
2k 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 ...
1
vote
2answers
990 views
How do i replace a key up keyCode with another in jQuery?
I currently have a table which only has a single editable column. I have a jQCuery change() event associated with the column's input controls to prevent any non numeric keys being pressed, other than ...
1
vote
3answers
797 views
Keycode for @ char
could someone please tell me the identifier for the @ key?
for example keys.Escape is for the ESC key. i would like to know what it is for @
thank you.