Tagged Questions

This tag is about the interacting with the keyboard: reading input from it, blinking the lights, programming it to explode, etc.

learn more… | top users | synonyms (1)

358
votes
27answers
11k views

Using a piano keyboard as a computer keyboard

I have RSI problems and have tried 30 different computer keyboards which all caused me pain. Playing piano does not cause me pain. I would like to know if there is a way to capture MIDI from a MIDI ...
217
votes
10answers
92k views

How to close/hide the Android Soft Keyboard?

I'm having an EditText and a Button in my layout. After writing inside the edit field and clicking on the Button, I want to hide the virtual keyboard. I guess there should be a simple, one- or ...
55
votes
43answers
5k views

How do you beat RSI? [closed]

I've been worried more and more about RSI lately. Especially of the dreaded "Emacs Pinky" as I'm an avid emacs users. How do you guys beat RSI? I thought we could share ideas for beating this common ...
48
votes
6answers
27k views

Binding arrow keys in JS/jQuery

How do I go about binding a function to left and right arrow keys in Javascript and/or jQuery? I looked at the js-hotkey plugin for jQuery (wraps the built-in bind function to add an argument to ...
46
votes
25answers
35k views

UITableView and keyboard scrolling issue

after a lot of trial and error, I'm giving up and asking the question. I've seen a lot of people with similar problems but can't get all the answers to work right. I have a UITableView which is ...
43
votes
7answers
43k views

How to dismiss keyboard for UITextView with return key?

In IB's library, the introduction tells us that when the return key is pressed, the keyboard for UITextView will disappear. But actually the return key can only act as '\n'. I can add a button and ...
43
votes
37answers
7k views

Is the switch to Dvorak worth it? [closed]

To those who were experienced (> 70 WPM, say) typists before the switch to Dvorak -- were you faster after switching? There are a couple good SO threads on Dvorak, but they are more on how to learn ...
35
votes
7answers
32k views

Android: show soft keyboard automatically when focus is on an EditText

I'm showing an input box using AlertDialog. The EditText inside the dialog itself is automatically focused when I call AlertDialog.show(), but the soft keyboard is not automatically shown. How do I ...
32
votes
4answers
594 views

Is there a reference of default keyboard behaviours for Silverlight 4 controls?

In the official Microsoft documentation there's only one paragraph mentioning how controls behave to keyboard (at least what I could find): ...
30
votes
1answer
731 views

iMessage Style Receding Keyboard in an iOS App

I've been wondering if it is possible to replicate the behavior of Apple's iOS5 keyboard in the messages app, without using any private API calls. When you scroll down past the keyboard in the ...
28
votes
2answers
483 views

Delphi ^A syntax: Documented, implied, or undocumented?

Let me explain by an example. In Delphi, you can write procedure TForm1.FormKeyPress(Sender: TObject; var Key: Char); begin if Key = ^C then ShowMessage('The user wants to copy something.') ...
27
votes
9answers
36k views

How to detect the currently pressed key?

In WinForms, you can know, at any time, the current position of the cursor thanks to the Cursor class. The same thing doesn't seem to be available for the keyboard. Is it possible to know if, for ...
25
votes
8answers
10k views

How do you tell if caps lock is on using JavaScript?

How do you tell if caps lock is on using JavaScript? One caveat though: I did google it and the best solution I could find was to attach an onkeypress event to every input, then check each time if ...
24
votes
7answers
16k views

iPhone Keyboard Covers Text Field

I have an app where, in Interface Builder, I set up a UIView that has a text field near the bottom of the view. When I run the app and try to enter text into that field, the keyboard slides up ...
24
votes
2answers
18k views

How do I show the number keyboard on an EditText in android

I just basically want to switch to the number pad mode as soon a certain EditText has the focus.
24
votes
7answers
16k views

iPhone UIWebview: How to force a numeric keyboard? Is it possible?

I'm experimenting with PhoneGap to develop some iPhone apps. PhoneGap basically wraps a UIWebView - it works well. The problem is the my app has several input fields that only take numeric input. I ...
19
votes
29answers
20k views

What is the best keyboard/mouse for ergonomics or to prevent wrist pain? [closed]

I have had pain in my wrists in the past, and as someone who types all day, I was wondering what are some keyboards or mice that have helped for this sort of pain. Update: Many answers have ...
17
votes
2answers
3k views

Detecting iPad keyboard hide versus external keyboard connect?

The iPad virtual keyboard will disappear in one of (at least) these 3 circumstances: If the control (say, a UITextField) programmatically resigns first responder. If the user taps the "dismiss ...
16
votes
2answers
6k views

How to develop a soft keyboard for Android?

I would like to play around with some ideas and develop a soft keyboard for Android to replace the default one. Is there any general information about soft keyboard development for Android out ...
16
votes
13answers
12k views

OS X Terminal: Meta key + alt functionality at the same time

Is there a way to use "alt/option" key as a meta key but still be able to use the key to make some characters which need it? For example in my local keyboard layout: @ is alt-2 \ is alt-shift-7 | ...
15
votes
6answers
30k views

how to hide the keyboard when empty area is touched on iphone

normally when you touch the text input area, the keyboard pops up and when you touch the empty area of screen, the keyboard disappeared. How to make that happen? just like what we experienced on ...
15
votes
14answers
3k views

Control multiple PCs with single Mouse and Keyboard

As a programmer I found it very hard to use my laptop and workstation with two different input devices, Can anyone suggest a good solution to use single mouse and keyboard to control my two machines ...
14
votes
28answers
3k views

What is the best way to learn Dvorak? [closed]

I've tried in the past but gave up. Thoughts? Edit: I'm a software engineer and can't afford the initial productivity hit. I'll need to use both QUERTY and Dvorak until I'm up-to-speed.
13
votes
8answers
2k views

Run javascript function when user finishes typing instead of on key up?

I want to trigger an ajax request when the user has finished typing in a text box. I don't want it to run the function on every time the user types a letter because that would result in A LOT of ajax ...
13
votes
4answers
13k views

Simulating a tab keypress using JavaScript

I'd like to have the browser act as if the user had pressed the Tab key when they click on something. In the click handler I've tried the following approaches: var event = ...
13
votes
15answers
4k views

Reaching up to hit the escape key sucks (especially in vim) [closed]

Escape is almost as important as the enter key, used universally for "cancel". In vim, it's arguably more important than the space bar, making its location highly suboptimal. What key remappings -- ...
13
votes
6answers
13k views

Polling the keyboard in python

How can I poll the keyboard from a console python app? Specifically, I would like to do something akin to this in the midst of a lot of other I/O activities (socket selects, serial port access, ...
13
votes
25answers
4k views

What is the best way to avoid getting “Emacs Pinky”?

I just started using GNU Emacs as my text editor and I am concerned about getting afflicted with "Emacs Pinky" by having to constantly press the control key with my pinky finger as is required when ...
12
votes
7answers
1k views

really weird eclipse keyboard behavior/bug?

I am using Helios on Mac Snow Leopard. I don't know why but all of a sudden my arrow keys and delete button start not working only on Eclipse(so Eclipse ignores them) but the rest of the buttons works ...
12
votes
7answers
1k views

Mnemonic Password Generation Algorithm for QWERTY Keyboards

I've a "mnemonic" password generation function that goes something like this: function Mnemonic($mnemonic) { $result = null; $charset = array(str_split('aeiou', 1), ...
11
votes
1answer
178 views

How to show keyboard without touching the UISearchbar?

Can I show the keyboard for UISearchbar on viewWillAppear method call without touching the UISearchbar ?
11
votes
3answers
971 views

Simulate Tab Key Press in iOS SDK

When a hardware keyboard is used with iOS, pressing tab or shift-tab automatically navigates to the next or previous logical responder, respectively. Is there a way to do the same programmatically ...
11
votes
12answers
1k views

Best keyboards for emacs?

For emacs users out there, what are your recommended keyboards? Bonus points for keyboards that: Have no capslock key. Instead, a control key in that position. Alt keys that are closer to the ...
11
votes
8answers
2k views

Colemak keyboards with Emacs or VIM [closed]

I've been crossing things out on my TODO list. I've recently picked up Colemak. Next I wanted to learn Vim or Emacs. I was leaning towards Vim, however one of its benefits are sticking to the home ...
11
votes
2answers
8k views

How can I give keyboard focus to a DIV and attach keyboard event handlers to it?

I am building an application where I want to be able to click a rectangle represented by a DIV, and then use the keyboard to move that DIV Rather than using an event listener for keyboard events at ...
11
votes
17answers
3k views

Keyboard layout [closed]

Similar but different to Keyboard for programmers, simply put, what keyboard layout is the best? I'm using Colemak and it's good but I don't think it's actually faster than Qwerty. Dvorak was ...
10
votes
2answers
579 views

Android 3.1 soft keyboard in fullscreen mode

I'm developing an application for Android 3.1. Is there a way to show (or forcing) the Android keyboard in fullscreen mode? Thanks
10
votes
7answers
4k views

What is the height of iPad's onscreen keyboard?

I'm looking for two numbers here: the height in portrait and the height in landscape. Don't answer in cm or inches, but rather in pixels. Thanks!
10
votes
1answer
3k views

UIKeyboardFrameBeginUserInfoKey & UIKeyboardFrameEndUserInfoKey

In the Managing the Keyboard documentation: UIKeyboardFrameBeginUserInfoKey The key for an NSValue object containing a CGRect that identifies the start frame of the keyboard in screen ...
10
votes
3answers
3k views

Android editview done button

When user click at the EditView android opens the keyboard so that user can write in the EditView. The problem is when the user is done with writing, there is no way to hide the keyboard and the user ...
10
votes
7answers
743 views

One handed coding — tablet, special keyboard, one-handed typing?

I recently broke my finger and can now only type with my right hand. This has seriously impacted my typing speed. Since I write software for a living, this is a serious problem. I have been doing ...
10
votes
4answers
5k views

UISearchbar clearButton forces the keyboard to appear

I have a UISearchBar which acts as a live filter for a table view. When the keyboard is dismissed via endEditing:, the query text and the gray circular "clear" button remain. From here, if I tap the ...
10
votes
5answers
673 views

Disabling copy of empty text in Visual Studio

I have somehow misconfigured fingers. This leads to a very annoying situation. I select a block of text to copy; I move the cursor the place where I want to paste the code; I accidentally press ...
9
votes
1answer
143 views

A day without Mouse (Java keyboard Shortcuts)

Today I decide to make a resolution which consist of testing my Java application using the keyboard solely. But I am faced with some obstacles: How do you select/deselect a checkbox using the ...
9
votes
4answers
314 views

Capture Media Keys when Application is Minimized

I want to provide an option with a media player I'm working on for the media keys to work even when it's minimized. What's the best way to capture and process those key events in C# without having ...
9
votes
2answers
286 views

Vim users, where do you rest your right hand?

Longtime vim users, do you keep your fingers on"jkl;" or "hjkl" in normal mode? Standard touch typing teaches us the home position for the right hand has the index finger on the "j" key, so your ...
9
votes
2answers
1k views

OSX: Detect system-wide keyDown events? (Solved, with sample code)

I'm working on an typing-tutor application for Mac OSX that needs to have keystrokes forwarded to it, even when the application is not in focus. Is there a way to have the system forward keystrokes ...
9
votes
6answers
6k views

resignFirstResponder not hiding keyboard on textFieldShouldReturn

I have a view with a UITextField which should hide the keyboard when return is pressed. My function is this: - (BOOL)textFieldShouldReturn:(UITextField *)textField { if ( textField == userPassword ...
9
votes
2answers
21k views

iPhone keyboard, Done button and resignFirstResponder

This is probably a dumb question, but I can't find the answer in the docs. Did the "Done" button on the pop-up keyboard always cause the keyboard to disappear? I see a lot of code around the web like ...
9
votes
4answers
1k views

Show soft keyboard when Activity starts

I have 2 activities, A and B. When A starts, it checks for a condition and if true, it calls startActivityForResult() to start B. B only takes text input so it makes sense for the soft keyboard to ...

1 2 3 4 5 46