Tagged Questions
The keystroke tag has no wiki summary.
12
votes
4answers
7k views
Application wide keyboard shortcut - Java Swing
I would like to create an application wide keyboard shortcut for a Java Swing application.
Looping over all components and adding the shortcut on each has focus related side effects and looks like a ...
7
votes
3answers
310 views
How to properly implement cheat codes?
what would be the best way to implement kind of cheat codes in general?
I have WinForms application in mind, where a cheat code would unlock an easter egg, but the implementation details are not ...
6
votes
2answers
470 views
Sending keystrokes to a program
In window form, I made a button and I'm trying to make it send F1 to a specific window (Such as FireFox, My Computer, etc...)
My questions are :
How do I do it by the window's name? (such as ...
6
votes
4answers
3k views
focus() not working in safari or chrome
I have a div that has been given a tabindex, when the div is focused(click or tabbed to) it does the following:
inserts an input into itself,
gives the input focus
this works great in FF, IE and ...
5
votes
2answers
264 views
Cancel a keystroke in jQuery
Is is possible (cross-browser compatible) to CANCEL a keystroke after a user has made it (for example on a textbox)
The code I currently use edits the textbox value after the keystroke has been ...
5
votes
4answers
881 views
jQuery detect keystrokes and set variables accordingly
I have created a rudimentary EasterEgg within my code to activate when the following keystrokes are made (not simultaneously) Enter + c + o + l + o + r + s with the following code:
isEnter = 0; isC = ...
4
votes
2answers
259 views
Inject a keystroke in java
I'm looking for a way to inject a keystroke into the OS keyboard input buffer,
like when you click a button the program inserts one (or more) keyboard strokes. I wanted to do this in java because I ...
3
votes
2answers
71 views
jquery custom keycode trigger not working
I want to send keystrokes on the selected element like this:
$(":input").click(function(){
$(this).trigger("keydown", [{
preventDefault:function(){},
keyCode:9,
shiftKey: ...
3
votes
5answers
91 views
Differentiate between key pressed and key held
I have a javascript function which runs when the 'down' key is pressed. I would like, that if the 'down' key is held down, the function would not run at all.
I thought about timing between keydown ...
3
votes
3answers
482 views
Capture any kind of keystrokes (aka keylogger), preferably c# .net but any kind will do
I need to capture everything that i type on my keyboard and then store it in numerous ways. I'd prefer it to be written on C# for .Net, but anything will do really.
I have googled for that kind of ...
3
votes
1answer
206 views
How do I emulate a keystroke in DOS programatically (in C/C++)? [closed]
First off, I'm talking about DOS, and not Windows's command-line application.
I wish to write a procedure that would send a keystroke to the currently running process.
My goal is to use this ...
3
votes
3answers
286 views
Simple Keystroke Dynamics (KD) Measurement with JQuery
I want to develop a simple app to measure dwell time and flight time (see http://www.techrepublic.com/article/reduce-multi-factor-authentication-costs-with-behavioral-biometrics/6150761) in a text ...
3
votes
4answers
548 views
C# Detect Key Press, avoid non-typing keys
Is there any way to proceed into a method if the key that is being pressed does not result in any typing. i.e. the shift key, control key etc without having to specify all of them. Ideally, to detect ...
3
votes
3answers
812 views
Reset INPUT without FORM
I have INPUT element and I want to reset the previous value (not necessary original value). There are 2 ways:
Save the value in another variable and pull it out again
Press ESC key. But I don't want ...
3
votes
2answers
132 views
Making a .NET Windows application show-up on keystroke
My application resides mostly on the system tray on minimize. I'd like the user to be able to hit a keystroke (like ALT+SHIFT etc.) and it shows up on the screen (sort of like Launchy, if you've used ...
2
votes
2answers
141 views
Delphi XE - Send Ctrl+Key to 3rd Party Application
Im using a 3rd Party Application that exports a file. The application uses a hot key (Ctrl + E) as a shortcut for this function.
How can I send this key combination from my Delphi XE application to ...
2
votes
1answer
275 views
how to convert java jks keystore to pkcs12 certificate programatically?
Is there is any that i can convert ava jks keystore to pkcs12 certificate programatically?
Abdul Khaliq
2
votes
3answers
2k views
Convert String or Char to Keys object
If I use the following code:
for (int i = 0; i < text.Length; i++)
{
char c = text[i];
Keys k = (Keys)(byte)c;
MessageBox.Show(c.ToString() + "|" + k.ToString());
}
...
2
votes
4answers
446 views
How to send keystrokes to an application in C++
I'm trying to make a program to open Acrobat files using Adobe Acrobat Reader and save them in a text file, automatically.
What I want my program to do is:
open the pdf
send Alt + Tab //to move ...
2
votes
2answers
125 views
Changing the keystrokes of a USB keyboard
Every time a key is pressed on a regular keyboard, a numeric 'key code' is sent to the computer, eg. 32 or 51 which represent specific keys.
Unrelated to my default keyboard which I am using to type ...
2
votes
0answers
405 views
WPF KeyGesture not accepting a Shift+Alphanumeric key combination
I'm attempting to execute some WPF commands with help of WPF KeyGesture class. Application works fine until I specify a key combination consisting of Shift modifier and an alphanumeric key. For ...
2
votes
4answers
1k views
What does the 0x80 code mean when referring to keyboard controls
what does the 0x80 code mean when referring to the keyboard controls in C++ Windows environment?
For example,
if(GetKeyState('K') & 0x80) {
//do something
}
Thanks everyone!
2
votes
3answers
974 views
c# capture Ctrl+PageUp keystroke
I am having trouble capturing Ctrl+PageUp keystroke in a ListView control in WinForms application.
I am using this code to capture keystrokes -
private void ListViewEx_KeyDown(object sender, ...
2
votes
3answers
2k views
How to intercept capture TAB key in WinForms application?
could you please help me with this one? I'm trying to capture Tab key in Windows Forms application and do a custom action on it.
I have a Form with several listViews and buttons, I've set Form's ...
2
votes
4answers
257 views
Monitor keystrokes
I am a beginner in C# , and making a calculator . But i want to disable the "GO!" button when there's no number typed in textbox1 and once the user enters a number in it the "GO!" button becomes ...
2
votes
1answer
306 views
Keystroke for cmd-? on OS X? (Java)
Hey there
I'm desperately searching for the keystroke to access a help menu from my Java application.
The command for that is cmd-?, but I've got no idea how to access that.
The keystroke for cmd-c ...
2
votes
1answer
412 views
how to register KeyStroke on JXDatePicker
I need to transfer focus onto another element when user press Enter key, so I succeded to register KeyStroke on most elements this way:
this.getInputMap( ).put( KeyStroke.getKeyStroke( '\n' ), ...
1
vote
1answer
67 views
Screen capture with AppleScript
Working on a AppleScript that opens a webpage in safari and makes a screen capture of a specific area (using CMD+SHIFT+4). But I'm having trouble making the screen capture part automatic.
I'm using ...
1
vote
1answer
75 views
jQuery: Auto-formatting a number in text-field to two decimal places on keystroke
How do I get an input field (text) to accept only numbers and to automatically format it to two decimal places, as the user is typing in each digit?
For example, the default value of the field is ...
1
vote
1answer
33 views
OSX: detect SPACEBAR down and up events
I need to record several thousand short soundbites of my own speech (I'm training an acoustic model for a speech recognition engine)
So for each one, a line of text presents itself on the screen and ...
1
vote
2answers
110 views
Sending keystroke events to OSX
I wish to send keystrokes, including shift,ctrl,cmd,opt combinations, to OSX. Basically anything that I can do on the keyboard.
How do I accomplish this?
I would also like to send mouse clicks. Is ...
1
vote
0answers
107 views
Handling the keypress event in android
Our's is a mobile application developed using ADF mobile browser and myapache trinidad components.
We have a requirement of counting characters entered by the user in a . For it, we call a javascript ...
1
vote
2answers
89 views
How to learn about the internals of Swing keystroke handling
Swing can be a frustrating beast. Especially if you are trying to design an application with it that goes "against the grain" of the assumptions that the Swing designers used in designing Swing. We ...
1
vote
2answers
367 views
Check whether key is pressed [closed]
Possible Duplicate:
C++ console keyboard events
I want to have a program do something if a certain key is pressed down, in this case the letter 'o'.
Is there any easy way to do it? Here's ...
1
vote
1answer
35 views
ActionScript3 Exporting Issues
I have just started using actionscript three and I wrote code to make a movieclip moveable through keystrokes and a HitTest to make another movie clip run. When I preview it it all works fine. But ...
1
vote
3answers
731 views
Simulate keystroke in linux with Python
how can i simulate a keystroke in python? and also more keys pressed at the same time
something like:
keystroke('CTRL+F4')
or
keystroke('Shift+A')
1
vote
1answer
326 views
Use jQuery to move DOM element's position across the screen from a keypress?
I would like to move a DOM element once the right arrow key is pressed.
The distance the element moves should be directly proportional to the length of the right arrow keypress.
I was thinking that ...
1
vote
1answer
67 views
Preventing application from receiving a keystroke
I want to create an application in which, when it starts executing, the user can not perform keystrokes and the application cannot receive any events from keyboard, such as command+Q,command+shift+3, ...
1
vote
0answers
126 views
NSEvent doesn't work
Can somebody tell me what's wrong with the following code. I want to simulate an "a".
NSEvent* keyEvent = [NSEvent keyEventWithType:NSKeyDown location:NSZeroPoint modifierFlags:NSCommandKeyMask ...
1
vote
1answer
69 views
i need a solution if the user change his keyboard or his mood changed in keystroke dynamic?
my graduation project is about keystroke dynamic authentication for user and i have some problems (the users change their keyboard , Distractions happened to them change their writing characteristics) ...
1
vote
1answer
258 views
Keystroke command to Show All Bookmarks in Safari not working
I am trying a simple Keystroke command to Show All Bookmarks in Safari 5.0.2 but it is not working -
tell application "Safari" to activate
tell application "System Events"
keystroke "B" using ...
1
vote
1answer
87 views
How to have gtk control+c to be handled, or not?
I'm using pygtk, and would like to handle control+c sometimes to do a special copy action, but other times to let gtk handle it. For example, I'd like to put an object on my clipboard if it is ...
1
vote
1answer
297 views
how to simulate a escape key at the end of a key sequence in c++?
how to simulate a "escape key" as if an escape key has been pressed, at the end of a string sequence in c++?
i need to provide the stdin input, which accepts string data until Escape key is pressed,
...
1
vote
4answers
3k views
How to disable backspace if anything other than input field is focused on using jquery
How do I disable backspace keystroke if anything other than 2 specific input fields are focused on using jquery?
here is my current code (NOW INCLUDING 2 TEXTBOXES):
...
1
vote
1answer
218 views
Override default behavior of SPACE key in .net WinForms ListView
I'd like to implement some custom behavior of Space key in a ListView. Basically I'd like to toggle selected status of the item under cursor - that should be fairly simple
this.FocusedItem.Selected ...
1
vote
3answers
2k views
Java Swing KeyStrokes: how to make CTRL-modifier work
In the following program, why does hitting the 'a' key print "hello, world" while hitting 'CTRL-a' doesn't?
import java.awt.event.*;
import javax.swing.*;
public class KeyStrokeTest {
public ...
1
vote
3answers
330 views
Sending a 'copy' command in cocoa
Is there any way to send a copy (command-c) instruction without using a cgEvent to mimic the keystrokes? I don't have access to the text field in the application I want to take text from, so need to ...
1
vote
1answer
324 views
how to determine keystroke for a given character in Wingdings font in charmap?
I basically want how to easily determine the keystroke value of a Wingdings character? Looks like a very old version of Charmap used to have this functionality but no longer from what I see in ...
1
vote
1answer
322 views
Record Keystrokes outside of the application
Recently I made an autoclicker for a game, which would allow you to use F1 and F2 to turn it on or off, once I finished the application I thought to myself, "oh great, I forgot Java doesn't let you ...
1
vote
4answers
325 views
change a keystroke passing a hook(c/c++)
is it possible to edit a keystroke using a winapi keyboard hook? well, not neccesary a keyboard hook but something like it..
i wanna do something like this:
user presses key 'A'
my function adds 1 ...