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

learn more… | top users | synonyms

0
votes
1answer
22 views

Android: Back button to hide edit text then kill activity

I'm trying to hide an edit text when the back button is pressed, and then when the back button is pressed again the activity is closed. At the moment when the back button is pressed the edit text is ...
0
votes
1answer
24 views

Lower Keyboard sensitivity in java keyhandler?

private class KeyHandler implements KeyEventDispatcher{ @Override public boolean dispatchKeyEvent(KeyEvent e) { if(e.getKeyCode() == KeyEvent.VK_RIGHT){ ...
1
vote
0answers
33 views

How to bind multiple actions to a keyboard event in javacript

I am trying to make a chrome extension that modifies the text in an active text area of a facebook chat window. But I want the change to take place only when the user presses the enter key so that the ...
-2
votes
1answer
25 views

No Sound when KeyEvent added

After adding this piece of code I have lost the sounds of my game. Even the volume control button does not work while playing. Solution needed as soon as possible. Thanks. ...
-4
votes
0answers
26 views

KeyEvent Parameters [closed]

Okay so I have this code: public static void main(String[] args) { keyPressed( ****HERE**** ); } public static void keyPressed(KeyEvent e) { System.out.println("Press ...
0
votes
2answers
30 views

Javascript: escape key clears text in firefox

I have an input type text with some functionality. The text always has the focus but in the meantime the text can change. When you press the escape key something should close. I did bind a key event ...
0
votes
0answers
58 views

Control is entering multiple times for single keypress

I have a piece of code in Java Swing that disable keystrokes. But when I press a key for once the control enters code for multiple times. I attach my code: ...
0
votes
1answer
39 views

Android: is it possible to fire/emulate D-Pad KeyEvent?

I have a game for Android that uses hardware keys (D-pad). There are lots of lines of code in my onKeyDown and onKeyUp callbacks throughout the program. Now I'm trying to add support for a bluetooth ...
-2
votes
4answers
54 views

how to make key press not pause? [duplicate]

Okay, so I am making a 2D side scroller game for school. It is pretty much just like Mario (well, that is my hope for when I finish.) When I press the right arrow key to move my player along the map, ...
2
votes
1answer
41 views

How do I see if any programs are emulating keys

I've made a game where the task is to press spacebar 100 times which is mutiplayer, People are starting to use simple applications which spam the key "space" and I'm wondering if there is a way to ...
0
votes
1answer
57 views

Java Robot Class KeyPress

The code Robot r=new Robot(); r.keyPress(KeyEvent.VK_CAPS_LOCK); r.keyPress(KeyEvent.VK_V); r.keyPress(KeyEvent.VK_CAPS_LOCK); does not close after printing the V. How do I fix this?
2
votes
1answer
72 views

Call actionPerformed Method using normal method of class

I am trying to call the actionPerformed() in normal method of class. I know that it get automatically executed on whenever button get pressed. But I want to call that method when ENTER button get ...
0
votes
1answer
27 views

setting jframe size with KeyEventDispatcher

This is my main class package Apocalypse; import java.awt.*; import java.awt.event.*; import javax.swing.*; public class Main extends JFrame{ private int xSize, ySize; public Main(){ ...
0
votes
3answers
112 views

mouse_event vs real mouse event

Is there a difference between a real mouse click (by hand) and execution of the click from code (by mouse_event in c#)? Similarly, is there a difference between the real moving the mouse cursor and ...
0
votes
0answers
64 views

Android 4.2.x not firing KEYCODE_MEDIA_FAST_FORWARD

In my application, I'm trying to implement handling of remote control button events such as: KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE KeyEvent.KEYCODE_MEDIA_NEXT KeyEvent.KEYCODE_MEDIA_PREVIOUS ...
0
votes
2answers
80 views

Java converting keycode to string or char

I want to turn keyevent keycode value into a string or a char value. Either one would do. For example, when I press 'SPACE', which 'lets say' has a keycode 20, and I want to convert that value to a ...
0
votes
0answers
38 views

How to properly update a gui? Revalidate and repaint will not work

So, this might be a bit confusing seeing this out of context, but I will try to explain. I have a map that is being updated on grid. Occupants of certain tiles move on the grid. SOrry in advance if ...
0
votes
1answer
67 views

Dojo/connect “onKeyPress” ENTER event works locally but not on test server

My onKeyPress ENTER key event works when deployed (in IE) on my localhost but does not work (in IE) when deployed on the test server. On the test server the ENTER event works in FireFox and also ...
0
votes
1answer
30 views

Weird behavior of VirtualKey codes in java

I am getting keyboard input from a phone, and trying to display that on the computer using the robot class. Since I get ascii from the phone, I have a hashmap for ascii to VirtualKey value ...
0
votes
1answer
35 views

Simulating Menu Press action not working on all the Android

As in the later Androids, the menu button has been removed, I call the following code to open menu items when some one taps once in the UI. public void singleTapOnImage(View view) { ...
1
vote
3answers
61 views

How to change image on key release

I'm working on a little game using HTML5 canvas and javascript. Now what I am trying to do is to make an image move from left to right and when pressing a key it changes image to make it look more ...
0
votes
0answers
86 views

Android KeyEvent with Samsung S Pen

I have an app, which responds somehow on keyEvents, TouchEvents and GenericMotionEvents. And suddenly Note 2 users began to complain, that at the moment S Pen come close to screen (~1 cm) they get ...
0
votes
0answers
111 views

Android soft keyboard keyevent

Hi I'm new in android and im playing with android softkeyboard sample and i want to get all characters while swiping on keyboard like Swype. Please help me
-1
votes
1answer
66 views

How to run all methods of a java applet without specifically calling them?

I've just started creating a portal game through applet (yes I know it's totally outdated and I should be using swing blah blah blah), and so far I've only encountered one problem. The ...
2
votes
1answer
164 views

How to move a Bug in GridWorld with arrow keys

I'm making a game for my computer Science class and I am trying to move a character object that extends Bug with the arrow keys. Should I put the code to move with the arrow keys in the Character ...
0
votes
0answers
26 views

How to capture the onKeymutiple()?

I write the code in Mainactivity, however, I don't know how to enter the function: @Override public boolean onKeyMultiple(int keyCode, int count, KeyEvent event){ super.onKeyMultiple(keyCode, ...
0
votes
2answers
91 views

ActionListener from JTextArea Java

I'm new to Java, and trying to figure out one last thing for my program. This is the program that I have coded and with the layout it is perfectly fine no problem at all. Now my program suppose ...
3
votes
1answer
82 views

Sending KeyEvents to a Process

I am trying to send keyboard commands to a game emulator from my Java program, I know how to set up the process from processbuilder and run the process. However, I'm still having trouble with ...
0
votes
2answers
70 views

KeyEvent not firing?

I have a class World as follows: public class World extends JFrame implements KeyListener { public boolean left = false, right = false, back = false, fwd = false; public World() { ...
1
vote
1answer
49 views

how to capture a key event for an emergency button implementation in lock screen state of android

I want it like: Start an emergency activity on, say long press MENU button. Though there is a phone lock. As this is an emergency, on long press MENU button, it will capture the key Event/press and ...
0
votes
1answer
41 views

Where to determine what key was pressed

For example I have two type of keys that I need to handle in different ways. So, I should determine what type of pressed key is. I can separate keys in signal level, that is determine what key was ...
0
votes
1answer
107 views

consume javaFx KeyTypped event from TextField

im trying to validate a TextField,i want only to allow numbers on the TexField so my code is like this public void handle(KeyEvent evt) { String character = evt.getCharacter(); ...
0
votes
2answers
82 views

What's the keycode of the square brackets

I'm trying to use the Robot class in Java and type some text. Unfortunately I'm having problems finding the key codes of the square brackets, this symbol | and this symbol `. I can't find them in the ...
0
votes
2answers
96 views

KeyEvent not recognizing that shift is pressed

I am having following problem, i am trying to restrict users to enter only alphabetical values. Any other value (key pressed) that is not alphabetical will throw error. There are however 3 exceptions, ...
0
votes
2answers
367 views

Java Keyboard Keycodes list

Can anybody provide me with the Key Code integer list for individual keys used on the Keyboard for the KeyEvent class in java? I want to create a dropdown list of all the keyboard keys for the user ...
1
vote
1answer
59 views

How to assert if KeyPressEvent was any keyboard character?

I want to assert a com.google.gwt.event.dom.client.KeyPressEvent. It should match any characters or digits, and signs like ,.-+~ etc. Especially I want to exclude all "navigation" keys like arrows, ...
11
votes
2answers
109 views

What triggers (or generates) KeyEvent.ACTION_MULTIPLE?

The documentation for KeyEvent.ACTION_MULTIPLE says: "multiple duplicate key events have occurred in a row, or a complex string is being delivered. If the key code is not {#link ...
0
votes
2answers
86 views

Page up / down KeyEvent not being triggered on Google TV

I have an activity in GTV with a layout containing a horizontal ScrollView inside a vertical ScrollView. The horizontal ScrollView contains lots of buttons, arranged in rows using nested vertical and ...
0
votes
0answers
75 views

Send keystroke to not focused display

I'm trying to send key events to a display event if it is not in the foreground. At the moment i'm doing the following: Display *d_; d_ = XOpenDisplay(NULL); system(QString("xdotool key ...
1
vote
1answer
72 views

Multiple KeyEvents?

Hi I have a problem with my Android app. I use a boolean method to change the function of the back button to make a layout change. As shown in the code if I use a if- statement and if these things are ...
2
votes
2answers
149 views

Change event input character

Is it possible to simply change the character, that is written in the text field, by changing some of the event object properties? For example, I want to hide password characters from command: User ...
0
votes
1answer
141 views

Where does an event go when injecting it into /dev/input/eventx?

I think I have read all post related with my query, some of them helped but I still can´t find the correct approach. Im trying to develope an app which has to inject touch events into the system. As ...
0
votes
2answers
144 views

Android OnKeyListener not registering Enter and Search keys.

I am using a Popup window and within that window I have a search view. Upon clicking the search view the soft keyboard comes on screen. So I want whenever I press the search button or enter button ...
1
vote
1answer
437 views

Java key events

I'm having problems figuring out how to get properly notified when keys are pressed. The keyPressed method doesn't seem to be called again for the first key pressed when handling multiple keys. ...
0
votes
0answers
210 views

How to use onKeyPreIme(int keyCode, KeyEvent event) without extent edit text in android

I want to hide back button whenever soft key board is open on click of edit text.I have used onBackPress() method in which I have click on back button then soft keyboard is hide, but when I click ...
0
votes
1answer
64 views

How to start a game animation with spacebar?

I am developing a small game applet and I would like for it to wait until the user presses spacebar to start, however I am not sure what the best approach for this would be. Here I have written a ...
0
votes
1answer
84 views

make on/off console program by key press

I write simple console application and I want to control it by key press There is my code: #include "stdafx.h" #include <windows.h> int i = 1; BOOL WINAPI ConsoleHandlerRoutine(DWORD ...
-2
votes
4answers
499 views

How to create a KeyEvent

When i create the KeyListener, it requires the following fields: public void keyPressed(KeyEvent e) { } public void keyReleased(KeyEvent e) { } public void keyTyped(KeyEvent e) { } When i ...
1
vote
1answer
240 views

Simulate ctrl+v event on javascript

I try to simulate ctrl+v in javascript. I use firefox in Linux. What I do is: var pressEvent = document.createEvent ("KeyboardEvent"); pressEvent.initKeyEvent ("keypress", true, true, window, ...
0
votes
1answer
201 views

Displaying keypress count in JTextField or Jbutton

I'm having trouble displaying the amount of times a key has been pressed and display the number in a JTextField or JButton. Could anyone give me a hand with that? I already have the ...

1 2 3 4 5 8