modifier-key Questions

5

I have a keyboard event listener, and I am listening for the number pad key codes (1 through 9) for when number lock is activated; this works fine. However, in my app I also want to allow usage of ...
Zapateado asked 29/4, 2009 at 18:4

6

I have several situations when my control key gets stuck, and it happens only when I have AutoHotkey running. This happens with multiple different modifier keys including the control (^), windows (...
Alica asked 27/2, 2018 at 12:51

9

Solved

I am using a keydown event to detect keys pressed and have several key combinations for various operations. if (e.KeyCode == Keys.C && e.Modifiers == Keys.Control && e.Modifiers ==...
Postpone asked 16/9, 2009 at 19:0

2

Solved

Im trying to implement a keyboard class in my game that has two modes. The game mode takes input that uses lowercase, unmodified keys (unmodified meaning if I type a '0' with the shift it still ret...
Larianna asked 15/1, 2013 at 19:3

4

Solved

From what I can tell, the notion of "Shift", "Alt", and "Control" are pretty well hard coded from the keyboard itself right through the OS APIs. Sometimes I see the Wi...
Fluoric asked 1/11, 2010 at 15:58

5

Solved

I am trying to make a script run when Ctrl + Alt + e is pressed. How can Tampermonkey fire on a simultaneous ctrl, alt, and e key? I have tried ctrlKey, and altKey. I've found nothing that works. ...
Slesvig asked 1/6, 2016 at 1:18

4

Solved

I just experimented with the addLocalMonitorForEventsMatchingMask:handler: method in NSEvent and came across the following question: How do I find out if only certain modifiers were pressed? A sho...
Guilty asked 21/5, 2011 at 20:25

1

Solved

It happens in all my WPF applications and Visual Studio 2019 (which is definitely WPF based) also exhibits this strange behavior: Simply right click an item in the solution explorer while holding, ...
Oilskin asked 23/9, 2020 at 9:51

3

Solved

I am building a UI with Qt Creator and I want buttons to perform different actions with different modifiers. So I thought I could call functions with dynamic string properties that would perform th...
Jacob asked 7/1, 2012 at 19:55

2

Solved

I have a matplotlib and I have created a button_press_event like this: self.fig.canvas.mpl_connect('button_press_event', self.onClick) def onClick(self, event) if event.button == 1: # draw some...
Rend asked 9/8, 2013 at 6:19

5

Solved

I have a QTableWidget and would like that pressing Ctrl while clicking on a column header, marks the whole column. To get the column index is not a problem, since there is a sectionPressed signal, ...
Seely asked 23/6, 2010 at 8:35

1

Solved

What I am trying to do So, I have been trying to access keyboard input in Linux. Specifically, I need to be able to access modifier key presses without other keys being pressed. Furthermore, I wan...
Hyperkeratosis asked 6/1, 2014 at 5:7

1

Solved

I avoid the "control" key, AKA <C> in vim parlance, on my laptop; I hate where Apple put it. I would really like to remap all of the vim commands using control to instead use "command", but t...
Foushee asked 1/8, 2010 at 2:39
1

© 2022 - 2024 — McMap. All rights reserved.