Top "Keystroke" questions

The generic concept of capturing or generating a keystroke event in an application.

VBScript SendKeys CTRL+LWIN+TAB?

I am trying to write a simple script that will send the key combo of CTRL+WINDOWS KEY+TAB. The …

windows vbscript sendkeys keystroke
Python code to cause a backspace keystroke?

I keep finding ways to map the backspace key differently, but that's not what I'm after. I'm in a program …

python keystroke backspace
How do I send key strokes to a window without having to activate it using Windows API?

    I have made an application already that sends commands to an activated window. I want to be able to use …

winapi sendmessage sendkeys keystroke
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 …

javascript jquery focus keystroke dynamic-forms
Simulate keystroke in Linux with Python

How can I simulate a keystroke in python? I also want to press multiple keys simultaneously. Something like: keystroke('CTRL+…

python linux simulation keystroke
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 …

c# .net capture keystroke keystrokes
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 …

java swing shortcut keystroke
how to get android app_id from google play services

I created android application and hosted it on google play, but suddenly I deleted my project in Eclipse (from disk …

android google-play-services keystroke app-id
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 …

jquery input keystroke backspace
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.…

java swing action keystroke