keyboard

Issues with Android soft-keyboard interaction

I am designing an Android app and I'm having a couple of layout issues. I have a screen with 3 EditTexts on it in a row, and I would like for the 'next' key on the soft keyboard to cycle between the EditText fields. As for now, the 'next' key has no effect. Also, when the soft keyboard is displayed, it covers up the third of the EditT...

How to set Custom keyboard specific to only a UItextfield

How to set Custom keyboard specific to only a UItextfield ? When i am changing using this method , all the keyboards in my application are changed to this new custom keyboard. I added [[NSNotificationCenter defaultCenter] addObserver:self.view selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil]; ...

Hotkey for copying text as you type

When I'm programming I often use copy and paste, which requires me to grab the mouse, highlight the text, and press ctrl+C (I'm using Windows BTW). Is there any hotkey or solution out there for a keyboard short cut that I could press and have it start copying each character I type? It would be such a godsend to get rid of that whole high...

Specific program not recognizing simulated keyboard input

I'm working on a program that automates the use of this piece of software, EPIX XCAP. In Capture(), it snaps a picture, opens up the File menu, open up the save dialog, but then with it reaches the Tabs (to navigate to the file name box in the save dialog) it doesn't do them. I can tab through it manually well enough, and I tested the ...

Strategy for supporting international keyboards in Flash/Flex

I have an Flash/Flex application that is showing weird behavior when used in conjunction with international keyboards. For example, I have extended TextInput in this app to allow for special behavior when the user presses the hyphen ('-') key. When this happens I want the text of the input to be padded with zeros in addition to the typ...

Can I use the Cocoa-touch onscreen keyboard in a regular Cocoa application?

I currently have a program written in Cocoa and I would like it to have an onscreen keyboard as I am thinking of using a touch-screen monitor and would like to not have a keyboard for this particular piece of software. I know there is an onscreen keyboard in Cocoa-touch, but as far as I am aware, that can only be used on the iPhone, iTo...

Java/AWT/Swing: how to distinguish the pressed enter or return key

It looks like native applications behave differently if the user presses the Return key (right to the characters) or the Enter key (number key pad) - one time a new line character is inserted, the other time the default button is activated. How I can distinguish both key presses from Java/AWT/Swing? ...

How to override the <ENTER> key behaviour of the virtual keyboard in Android

I want to override the behaviour of the ENTER key of the virtual keyboard so that: when there are more fields on the screen, it 'tabs' to the next field when it is the last field of the screen, it performs the default action of the screen I've been playing with the IME options and labels, but just don't get what I want. Anybody a sugge...

Avoiding scrolling when switching among text fields

I have a view controller for a view with six UITextFields. Whenever the user selects a text field, I need to scroll things upwards. So the text fields all set the view controller as their respective delegates. When the delegate method fires, it then calls a scroll method to scroll things up (if the keyboard is appearing) or down (if i...

two UITextFields - slide first Keyboard out and next in

hi ! so in my viewdidload i got something like [nameTextField becomeFirstResponder] now after a button gets klicked, i want to slide out the keyboard of this textfield, and slide another keyboard of another textfield in. i thought about [nameTextField resignFirstResponder]; [dateTextField becomeFirstResponder]; but the other keyb...

How to display virtual keyboard when a physical keyboard is connected

Is there a way to programmatically force the virtual keyboard to appear when there is a bluetooth keyboard connected to the iPad? I have a bluetooth barcode scanner connected to the iPad, which acts as HID (keyboard). The problem is, the virtual keyboard stays hidden in my app. Is there any way I could force the virtual keyboard to show...

javascript - API for the ipad touch keyboard

I'm developing a simple html-form for the ipad safari. You can tab through the inputboxes via the "next" button on the touch keyboard. Unfortunatly one input box should have it's own "keyobard" (a spinnig wheel). Is there any chance to hide the keyboard for this special input? ...

How to toggle between UITextView's inputviews.

Hi, I am getting problem in making my application compatible with iphone 4.0 My problem is like this. When i click on a UITextview a custom keyboard is showing UIView *test=[[UIView alloc] initWithFrame:CGRectMake(0, 160, 320, 215)]; UIExtendedKeyBoard *objKeyBoard =[[UIExtendedKeyBoard alloc] initWithFrame:[test bounds]]; ...

Javascript multiple keys code

Hello, How to get multiple keys code ? i.e for Ctrl+g what is the key code ? The key code for ctrl is 17 and for g is 71. Should i use the key code 88 (17+71) for ctrl+g ? or for shift+alt+1 etc Any suggestions, is this possible ? I am using jquery and is there any plugin for this ? ☺☺☺☺ ...

C# text import from external window

I'm working on an existing project that has a text import tool written in C#. It essentially shuffles to the last window that had focus, copies the text, switches back and pastes the text in the textbox. To do this it essentially issues keyboard commands so: "Alt+Tab", "Ctrl+A", "Ctrl+C", "Alt+Tab" and then finally get the text from the ...

but a repair on key popping off a laptop keyboard is under warranty?

but a repair on key popping off a laptop keyboard is under warranty? ...

Change session and keyboard language programmatically on Windows

It it possible to change the session language and keyboard language programmatically for current user via Windows API after the user has logged on? Changing some registry settings and logging off/rebooting is not a solution for me. I know that ActivateKeyboardLayout can be used to adjust keyboard but only works for the calling process. ...

Keyboard input in games (for GLUT)

Almost every game use keyboard as input. I have been searching for 2 days on this topic and found quite much about it. Keyboards have many disadvantages, but main problems I found are different layouts and second that if you are pressing 3 keys at time, it can lead to corruption (row-column error). If you don't know what I'm talking abou...

C# app that uses Notepad

I want to write an application (C# would be best, other are also welcome) that works in the background in Windows/Linux, but is able to put characters in inputs and textareas of currently active window, in applications like Notepad, Browser URL Address and so on. How is this possible? ...

Capturing mouse/keyboard events outside of form (app running in background)

Hi guys, I have an app that runs in the background (minimized/task tray). I need to be able to detect mouse activity (clicks, move) as well as keyboard activity. What is the best way to do this given the constraint that my window is not "focused" ? ...