Tagged Questions

1
vote
2answers
61 views

Keypress To Simulate A Button Click in C#

Ok, so I'm in the process of making a Tic-Tac-Toe game to help me learn C#. I'm attempting to add a bit of functionality to it, so I want people to be able to use the NumPad on a computer to simulate …
0
votes
2answers
148 views

How to Get the Active ChildWindow of an application?

Hi guys, I have this problem. I have an handler to the mainWindow of a certain application, and I want to simulate a keypress on that application... I'm using sendMessage/postMessage api calls to do …
1
vote
4answers
71 views

Keypress in jQuery: Press TAB inside TEXTAREA (when editing an existing text)

I want to insert TAB characters inside a TEXTAREA, like this: <textarea>{KEYPRESS-INSERTS-TAB-HERE}Hello World</textarea> I can insert before/after the existing TEXTAREA text - and I …
0
votes
3answers
683 views

Simulate Mouse move/click/keyPress in an application that is not active

Hello guys, I know how to simulate mouse and keyboard events, but they act as if the user did them, so they will affect the window that is active. What I need is to simulate one of those inputs, but …
0
votes
1answer
103 views

HTML text input event

I have a form, and want to disable/enable its submit button depending on whether the form's input text fields are empty or have had text entered into them. I think this means having an event handler …
0
votes
1answer
47 views

Detect double Ctrl keypress in JS

I have a custom CMS and would like to add a "shortcuts menu" triggered by the pressing of the Ctrl key twice within, say, 300 milliseconds. I use prototype, so my starting point obviously is: …
0
votes
1answer
23 views

Catching Enter Keypress from a CComboBox

Once a user types something in to my CComboBox (within a CDialog subclass) and presses Enter, I would like to add what they've written to the list of options, and do some other handling. How do you do …
0
votes
2answers
27 views

Override Keybindings

I'm trying to make it so no matter what, when I push Space, a certain block of code is executed (cmd_play, to be exact). However, it only seems to work once if you do it using Form Keypress: private …
0
votes
2answers
47 views

Can I intercept control-A keypresses on IE?

I'm trying to use jQuery to intercept control-A keypresses on my web page, like so: $(document).keypress(function (event) { if (event.ctrlKey && (event.which == 65 || event.which == 97)) …
0
votes
1answer
30 views

Excluding form fields from keypress handler assigned to body

I have a keypress handler on a web page assigned to the body element. I really do want it to be active anywhere in the web page. Or so I thought. The keypress events in textual input forms also …
2
votes
4answers
169 views

Receiving key press and key release events in Linux terminal applications?

I would like to write a simple C program that will perform different actions based on both "key down" and "key up" events. This program will be run from inside rxvt. What library or mechanism should …
1
vote
1answer
371 views

Why does contentEditable element reject the Enter key?

Hi, I'm using an application that embeds IE control to show content. I change that content to contain a <div contentEditable="True">Hello World</div> element. This works well and I can …
0
votes
2answers
72 views

asp.net-mvc ajax query on keypress rather than submit button

I am using Ajax.BeginForm to update data on a webpage (as per the code below). Is there anyway i can hit the backend server on every keypress instead of waiting for hitting the submit button this …
0
votes
1answer
60 views

Disabling key functionality in browser

I am writing an application in JavaScript (w/ JQuery). The application has a lot of functionality that the user needs to access quickly and possibly at the same time (you could think of it as a game, …
0
votes
1answer
26 views

Can you get a keypress event for the phone call key in Flash Lite?

All mobiles have a green dialing key. Do you get an event for this in Flash Lite 3.0 or above?

1 2 3 4 5 next
15 30 50 per page