An event that is triggered when a Key is pressed on a keyboard input device

learn more… | top users | synonyms

0
votes
0answers
32 views

Selecting div in custom dropdown using Keyboard (Up, down and enter keys)

I have simulated a dropdown look alike using div. I have also implemented search functionality for the values in dropdown div. I am trying to select the options in div dropdown using keys. When i ...
0
votes
2answers
33 views

Finding keycode of multimedia key in java

I want to capture key presses on Windows like Fn+Pause, Fn+VolumeUp in my Java Application but I am unable to detect their KeyCodes. addKeyListener(new KeyAdapter() { @Override public ...
0
votes
2answers
58 views

Move a view up so textfield does not disappear behind keyboard

I have a view like you can see over here. You can see that I have an header image with below a lot of textfields. Only the UITextfields Adres - Postcode - Gemeente - Tel.nr - Email - BTWnr. are ...
1
vote
0answers
19 views

Replaying “active” keyboard grabs with Xlib on Linux

I've been using Xlib's XGrabKey to track input events for single keys with XAllowEvents=ReplayPointer so that the target window also gets the event. I need to do this for the entire keyboard, ...
0
votes
0answers
34 views

Objective-C change label via keyBoard event

I have a label and a button. A view is placed above the label and the button to detect keyboard events. Within the Class MyView the method -(void)keyDown(NSEvent*)theEvent detects whenever a key is ...
-1
votes
0answers
41 views

Please explain what exactly is happining in the Flet portion of the (defmethod glut:keyboard) of the following Common Lisp CL-OpenGL code

Here is the DefMethod I'm refferring to below....the entire code this came from is below the DefMethod. Basically I'm trying to change this (defmethod glut:keyboard) so I can add.....basically I have ...
-1
votes
0answers
37 views

Adding a paragraph after a line break of a highlighted sentence in a DIV

I tried googling about this problem for 2 hours now. Still can't find a solution PLEASE HELP ME GUYS :( So I have a DIV, DIV body. I have some text inside it and the user selects some of this text ...
2
votes
1answer
77 views

Simple command-line app I/O in Dart

Is there a way of taking single character (integer) keyboard inputs from the user and storing them to a variable in a Dart command-line app? I've tried something like: Stream cmdLine = stdin ...
3
votes
2answers
56 views

Can't type any letters or numbers in text inputs in fullscreen mode on webkit browsers

After switching to fullscreen mode (tested on chrome and safari), I can't type any letters or numbers in text inputs, but I still can enter special characters like *¨%£ but no simple letters... The ...
0
votes
2answers
43 views

GWT: Back Button working twice, both by browser and my GWT code

The Scenario: In my GWT webapp, I'm using KeyDownHandler to capture the event of user hitting backspace. Say, I'm using it on widget 'B', and hitting the backpsace when widget 'B' is focused should ...
1
vote
0answers
39 views

Chrome is firing 'Ctrl+C' keydown and keyup events when selecting text

I am dealing with keyboard events, and find that Google chrome will fire keydown and keyup events when I drag the mouse on the page to select some text. The wrongly fired events have keycodes of 17 ...
-1
votes
0answers
23 views

How come two USB keyboards (both HID) behaves differently on my laptop? [closed]

I have developed a gaming device which emulates a keyboard. It works well but there is one annoying thing. When I press two keys at same time (ex: 6 and 4), it does this: ...
2
votes
0answers
152 views

Applet Java 7 update 21: Cannot set AWTKeyListener on default Toolkit

In my self-signed applet (that may possibly become a CA-signed applet in near future) in which I have a fairly complex Swing GUI, I need to detect whenever the user has the SHIFT- or CONTROL-key ...
0
votes
1answer
13 views

Getting events when typing on keyboard android

I am developing a chat app for android. I am trying to implement a typing feature so that the chat partner know if the other site is typing. For this i need to get notified when the smartphone user ...
0
votes
0answers
56 views

Twitter boostrap carousel using boostrap lightbox plugin - slide only on over

this problem is a bit particular (as all problems no?) Im' using this plugin: https://github.com/jbutz/bootstrap-lightbox and twitter boostrap carousel. All work fine but... I want to open my ...
-1
votes
0answers
50 views

How to defend against a keylogger while at a cyber cafe? [closed]

Threat Scenario: You are at an internet cafe and you don't trust the computer. You believe there maybe a high-level key logger (deep data scan, general key logger capability, etc.). Are there any ...
0
votes
2answers
68 views

how to implement a keyboard listeners or action listeners in Perl

Im working on my final project in Perl. I'm creating an ASCII arcade game that will be ran through terminal. One of the specifications for the project is that our code must be able to run on the ...
0
votes
1answer
36 views

AS3 Keyboard events

How would one go about adding event listeners for multiple keystrokes, for example if the up and right buttons are pressed player goes diagonally in that direction.
0
votes
1answer
164 views

Python Turtle Graphics Keyboard Commands

Anybody have any insight into controlling turtle graphics in python 2.7 with keyboard commands? I have done extensive research on this website and others and feel like I am doing the right thing but ...
0
votes
0answers
67 views

What Android Events Are Triggered from Touchpad on Logitech K400?

I know that my Logitech K400 keyboard with touchpad can cause some Android apps (like the Dolphin Browser) to zoom in/out when I hold CTRL and swipe with 2 fingers up or down. I have written an app ...
0
votes
1answer
76 views

onfocusin not working for firefox and chrome

I have a Javascript running in a page. The following is the code am using. window.document.onkeydown = keydown; function keydown() { alert("keydown"); } window.document.onfocusin = focussedin ; ...
0
votes
3answers
100 views

How can I know a 2 last pressed key on a keyboard

Is it possible to know, what 2 last keys was pressed on keyboard? How can I do it? I need to compare this keys, and if they are the same - make some function. As example, if someone press Enter - this ...
2
votes
2answers
108 views

Handling joint key presses with Haskell

Writing a program in Haskell, I am struggling to handle key presses of the form ctrl-s and ctrl-l I am using the following code: main :: IO () main = do hSetBuffering stdin NoBuffering x <- ...
5
votes
1answer
106 views

Why are KeyUp and KeyDown events getting slower?

I am using the KeyUp and KeyDown events on a WPF Window. I also have a lot of calls in the CompositionTarget_Rendering event of this window that creates UIElements and animate them. This is done by ...
3
votes
3answers
194 views

jQuery - using arrow keys to navigate grid of divs

I'm pretty new to HTML, CSS and jQuery - and while my HTML and CSS are OK, my jQuery is not too good - and I think I'm trying to achieve something quite complicated. As you can see in the code I ...
3
votes
3answers
337 views

How do I convert e.KeyChar to an actual character value when handling keyboard events?

All I'm wanting to do is get the actual character that is pressed whenever they key is entered for the event. The only option I'm seeing is e.KeyCharwhich will give me the position rather than the ...
2
votes
1answer
81 views

Page-global keyboard events in Windows Store Apps

I'm working on a game, a Windows Store App based on WPF and written in C#. When the player presses the Esc key, I want to pause the game and show a menu (Continue, Quit etc.). Sounds simple. Sadly, ...
0
votes
1answer
174 views

Using keyboard input to trigger WebDriver events using Java

Im trying to accelerate the use of a web application using selenium Webdriver by creating hotkeys for it. I want certain webdriver click events to be associated with keyboard keys. For example, ...
1
vote
1answer
53 views

Convert Key to VirtualKeyCode

In my C#/WPF/.NET 4.5 application I am trying to capture a key press via a KeyEventHandler, and later use the excellent Windows Input Simulator to emulate that key press (to map gesture, voice etc. ...
0
votes
2answers
107 views

How to prevent number input on keydown?

I want to prevent number input on keydown event on textfield and run custom handler function. Here are the issues e.target.value is useless since the key value is not projected into the target value ...
0
votes
1answer
49 views

Javascript keydown events only firing for maximum of two keys

I have a system in place for capturing and registering arrow key input. It works up until a point. It correctly registers if a number of keys are pressed at the same time as long as two or less are ...
0
votes
1answer
68 views

jQuery UI Tooltip only shown once when tabbing through using keyboard

I've created a tooltip using jquery ui, but when I navigate using keyboard, the tooltip content only appears once and never again. Any ideas why this would happen? $('.test').tooltip({ ...
0
votes
2answers
132 views

Choose and select div elements with keyboard arrows and enter keys?

Is there any way of navigating through a grid of div elements by pressing the arrow keys on the keyboard, and "clicking" the selected div by pressing enter key? I know that I should at least try to ...
0
votes
3answers
282 views

Trigger a keyboard key press event without pressing the key from keyboard

How can I trigger a key press event without pressing the key from Keyboard? I tried with the solution from here, but I got the following exception: The best overloaded method match for ...
1
vote
1answer
151 views

keyboard event works only once

I am trying to make simple key remapper - when one keyboard key pressed, another different key press generated by code. Here is my code: [DllImport("user32.dll")] static extern uint keybd_event(byte ...
1
vote
2answers
532 views

Send keystroke to application in c# (sendkeys, postmessage, sendmessage all not working)

I am trying to do one of the following 1. open desired program and press a key programmatically 2. find open window of program and press a key programmatically (either is fine) I have tried ...
1
vote
2answers
43 views

How to ignore all except the last one of a series of quick Javascript events?

One of my script calls a function at some point, due to a 'changeCursor' event (I am using ACE editor). This slows down the movement of the cursor when I press it many times. I really want this ...
2
votes
1answer
105 views

Windows API global hook's unlimited range

I'm trying to make a C++ application that handles keyboard events (actually, just want to "catch" some phrases the user types) on every application running on the PC. The very base of what I am trying ...
0
votes
0answers
61 views

Can't activate sticky keys (shift 5 times) with Excel VBScript keybd_event and virtual key codes

Is it because keybd_event sends the input to the application but not to the operating system? I put in a couple of test lines which confirm that the shift key is indeed registered in the application ...
1
vote
1answer
86 views

Does the KeyDown KeySuppress cancel KeyUp event?

Let's say I've got this: private void txtAnalogValue_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Enter) { //Non-numeric key pressed => ...
0
votes
1answer
92 views

Type ENTER key is not capture

In my application I have a JTable where I mapped a Key event. The source: getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT).put(KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0), ...
0
votes
0answers
139 views

Send keyboard commands to an application programatically

I have the following code, implemented with the kinect: private void ProcessForwardBackGesture(Joint head, Joint rightHand, Joint leftHand, Joint hip, Joint leftKnee, Joint rightKnee) { ...
0
votes
1answer
85 views

KeyDown event not raising from a grid

Here I have sample window with a grid. I need to capture event when key is pressed. But it is not raising when I click grid area and then press key. It will work only if Textbox is focused. I know it ...
0
votes
0answers
33 views

view scrolls back to where it was after keyboard hides

I have a scrollerview. when I am clicking on a return button of the keyboard,or tap outside the textfields the keyboard hides however the view stays up where it got by having a keyboard. How can I ...
0
votes
1answer
61 views

How to gracefully exit Bottle when a Timer runs in the background?

When I start my bottle app, an object creates a forever running timer: from threading import Timer class Watcher(object): def __init__(self, timer=Timer): self.timer = timer ...
2
votes
1answer
108 views

JS - keyboard events - listen / unlisten

I have an issue concerning the keyboards events in JS. First of all, please do not answer me to use jQuery methods, I know most of it (bind/unbind, on/off, one...) but I work with an internal ...
1
vote
1answer
107 views

Unit Test for virtual Keyboard

One of my projects I am developing is a Keyboard hook that traps some of the higher numbered function buttons (f13-f20). The tablet this will work on has buttons on it that are mapped to those higher ...
1
vote
2answers
125 views

How to save fileds from asp.net when clicked on ENTER Key from Keyboard?

Hi, Here in my screen i have few fields where i need to save to Database when clicked on ADD BUTTON , But i want to save those fields when i click on ENTER Key From Keyboard. When i enter all fields ...
1
vote
1answer
44 views

Capture the events of 2 or more keyboards in JavaScript/Web Browser

I am writing some test applications that perform simple keyboard event capture. I have no problem with this basic approach. But now I need a better experience with my application and I want to ...
0
votes
0answers
71 views

mouse and keyboard eventlisteners disabling each other, needing extra click to work

okay, so lets say example situation, in my code user is going to enter the room with stage.addeventlistener(keyboardevent.key_down, enter_house) function enter_house(event:object) { ...

1 2 3 4 5 11