Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
5k views

BlackBerry - KeyListener with global scope

I am new to BlackBerry App development. I want to be able to listen for keypress events whenever the BlackBerry (8900 in my case) is on and on all screens is this possible? If so, it would be great ...
3
votes
3answers
145 views

ENTER key using in JTextField java

I'm using two JTextField in java Swing form. Now I enter the values in JTextField1. Next if I press ENTER KEY means the cursor move to JTextField2. How to do this?
2
votes
2answers
53 views

Why do key bindings die?

This application needs to send a motor move command when a GUI button or an arrow key is pressed and a motor stop command when the GUI button or an arrow key is released. These bindings work fine for ...
2
votes
2answers
58 views

accelerator key value java.awt.event.KeyEvent

I'm using accelerator to perform CTRL+C then CTRL+V using java/junit is there a way to get the value of CTRL+V to check it ?
2
votes
3answers
65 views

How to trigger onkeydown event on HTML document

I want to trigger the onkeydown event on the html page to do some actions. I have the following code: document.onkeydown = function(){ alert('dd'); }; Is it possible to trigger this event on ...
1
vote
2answers
80 views

How to capture keyboard inputs in my JWindow using Java?

When i press keyboard with F1 to 12 or 0 to 9 or A to Z (all buttons). I do not see its capturing my keyboard inputs. How do i fix this? public class Boot extends JWindow implements KeyListener { ...
1
vote
2answers
110 views

KeyPress\Up\Down doesn't work - C#

I have this code: private void Form1_KeyDown(object sender, KeyEventArgs e) { MessageBox.Show("Fail!"); } And I've set the event in the Form - but it simply isn't activated. Other events like ...
1
vote
0answers
254 views

Send a key combination (meta key and keycode) via the Android API

I can't figure out how to send a combination of a meta key (e.g. CTRL) and a keycode (e.g. for RETURN) with Android (I am using API level 11 = version 3.0). The documentation of the class KeyEvent ...
1
vote
2answers
570 views

Always in upper case… (C# winforms)

I have a TextBox in my form and I added this event on it: private void txtValue_KeyDown(object sender, KeyEventArgs e) { MessageBox.Show(e.KeyData.ToString()); } But it ...
1
vote
1answer
290 views

handling ctrl + key event in IE browser

I'm using hotkeys (ctrl + key) in my flex application. getting problem when my app is running in IE. when i press ctrl+D, im getting 'Add a Favorite' window of iE. How should i override the default ...
1
vote
1answer
707 views

Can I capture Windows Mobile PIE keyboard events?

Anyone know of a way to capture keyboard events (keyup / keydown) in Portable IE under Window mobile? I noticed that key events are not supported in JS, and would like to come up with a solution that ...
0
votes
2answers
62 views

How to capture key events

All of the examples for key listeners I have been able to find deal with components other than the main panel such as a text box or Menu. I know how to use setMnemonic to program Menu hotkeys but this ...
0
votes
1answer
74 views

Using jna to consume key events

In one of the applications I am writing i need to consume certain key events so other applications dont process them. In my code i make a com.sun.jna.platform.win32.WinUser.LowLevelKeyboardProc like ...
0
votes
1answer
73 views

honeycomb down arrow not acting like back button

I am trying to port my Android app to work well on tablets with Honeycomb. One issue I am having is when the keyboard is showing and the back button turns into a down arrow, I can't seem to pick it up ...
0
votes
0answers
9 views

Where a list of browsers default key action/events can be found?

I'm building a web interface in which I need to provide keyboard shortcuts for the user. The current shortcuts I'm using don't conflict with most browsers default shortcuts (I tried them manually), ...
0
votes
2answers
72 views

key combination of characters (non-ctrl or alt) in java

Im doing a project that needs to detect if a certain key combination has been pressed. Any keys like ctrl, alt, A-Z and 0-9 can be used as key combination. I've searched some codes using ...
0
votes
2answers
86 views

Using Keybinding to get keycode

I have a function that display the buffered image. I want mouse listener and key listener to be implemented in JLabel which loads the image. Since JLabel cannot get focus i tried to use KeyBinding. ...
0
votes
2answers
86 views

accessibility service in android?

Has anyone implemented accessibility service . I have a requirement where in i need to know when home key is pressed from a service . I am wondering if AccessbilityService is the solution ...
0
votes
2answers
116 views

Test between key down and key up event

Is there a possibility to run test between application's key down and key up event handlers? I develope 2D arcade game, gameThread inside gameView handles key press. I wrote JUnit Android Testing ...
0
votes
2answers
132 views

JQuery's key events not firing when with prototype [closed]

Possible Duplicate: jQuery and Prototype events I am using the Box2dJS library, and it uses prototype, so I had to include the prototype library for it to work. I am not using any prototype ...
0
votes
0answers
185 views

C#: callback function for KeyDown event not activated before form load finishes (dwinlock problem)

Sorry guys I'm a newbie in c# and been searching for the net for days now on how to solve this with very minimal modifications in the project..I've been looking for easier ways to do this maybe you ...
0
votes
3answers
273 views

jQuery: keyup(): Update div with content from text area… line breaks?

I have posted a working version here: http://jsfiddle.net/JV2qW/2/ I have a textarea that updates (on keyup()) a div with the text that is being entered. Everything is working as it should, except ...
0
votes
1answer
23 views

How to determine when an accesskey is pressed

How to determine when an accesskey is pressed - with javascript(IE, Chrome, Opera, Safari). In FF I used document.onkeypress event, but in Chrome this event doesn't fire when ALT key is pressed. ...
0
votes
1answer
55 views

Winforms stealing keystrokes from COM component?

I have a C++ ATL COM component that displays a popup window (plain ol' Win32, using the WS_POPUP style) which allows the user to input some search information. This component has been tested pretty ...
0
votes
2answers
208 views

JavaScript: Key Event Handling after Assigning a Focus

So, I just learned html/css/javascript last week, so I am not too savvy with it, and I am currently working on an app that uses the keyboard for navigation. Anyways, I needed to create custom ...
-2
votes
3answers
80 views

Hotkeys creation for java swing form

How to Create hot keys for form which is made by java swing?for example the form is create for student details means if I press ALT+N means the cursor will goto that name entering field.ALT+R means ...