Questions tagged [hotkeys]

Hotkeys provide quick access to user interface application or system actions via combinatorial key presses.

Good software design assumes no point-and-click device present, and allows the user to access all application commands via the keyboard.

On Windows, main menu shortcuts are usually indicated by it's underlined letter, called a mnemonic. They are activated like so:

  • hold Alt
  • tap the mnemonic
  • release Alt

Menu item shortcuts could have mnemonics as well, and are activated by pressing their mnemonic key (no Alt-modifier necessary at this point). These menu items may also have application-wide shortcuts, normally displayed next to the menu item itself.

Some applications implement system-wide global shortcuts, which activate regardless of which application has the user's focus. These are called hotkeys, so see the [hotkey] tag for those questions.

Shortcuts can consist of a combination of Alt/Option, Ctrl, Shift, (on Macs), and function and character keys. Some applications use key-of-chord like shortcuts, where you press a combination (chord) of the above keys in sequence.

Consult the application's user manual for details on what shortcuts it provides.

Useful Links

1159 questions
0
votes
1 answer

Excel 2010 Cell Selection Macro

So I'm floored that there is not a hotkey to do this. I went on Microsoft's site to check the Excel hotkeys and there isn't one. All I want to do is have a hotkey that copies the contents of a cell that I have currently selected. I don't want to…
ToastyMallows
  • 4,203
  • 5
  • 43
  • 52
0
votes
3 answers

Why is HotkeySet() not working with clipboard data?

My clipboard controller could have several items copied to the clipboard when using a hotkey (CTRL + SHIFT + Q), instead of only one item, and pastes all at once (CTRL + SHIFT + W), or paste any of the first 10 items directly (CTRL + SHIFT + 1 … 9).…
a.u.r
  • 1,253
  • 2
  • 21
  • 32
0
votes
1 answer

How to apply hot key in menubar / submenu using primefaces

I would like apply for hot key on Menu Bar/ Sub Menu Bar Using Prime Faces. When i applied Hot key (like ctrl+f) then menu would be appearing like this When i click in File Menu then its working fine but using the hot key its not appear. So, Any…
sachin
  • 1,447
  • 4
  • 14
  • 22
-1
votes
1 answer

Creating Two Windows Causes Second Created to Bum Out

I'm trying to use a hotkey to change a layered window from being transparent to allowing mouse messages to come through. In my main function I call // make hotkey with WM_HOTKEY messages sent to hwnd's window procedure, id 1, // no other keys to…
chris
  • 60,560
  • 13
  • 143
  • 205
-1
votes
1 answer

IntelliJ - Hotkey for add all final modifiers where possible?

I've spent half my life in Eclipse, now transitioning to IntelliJ. Old habigs die hard :-)7 I really liked the functionality of Ctrl+A, Ctrl+1, add finals where possible to an extent it is in my muscle memory. Pls let's try to avoid the debate of…
rlegendi
  • 10,466
  • 3
  • 38
  • 50
-1
votes
1 answer

Can I add a hotkey to my secondary mousewheel on my MX Master 3 mouse?

Im using a Logi MX master 3 mouse from Logitech. This mouse has two mousewheels and i would like to add the second mousewheel to a hotkey in VS code! When trying to apply the mousewheel to a hotkey in VS code It does not notice the mousewheel.…
-1
votes
1 answer

Ctrl + c / Ctrl + v with memory effect

I think, that it would sometimes greatly improve your workflow, if you could ctrl + c (copy) in a series. That means, that when pressing ctrl +c is pressed, the content is stored in the memory until ctrl + v releases all the strings in memory.…
Uwe.Schneider
  • 1,112
  • 1
  • 15
  • 28
-1
votes
1 answer

What is this Icon on the Right side

I activated a Shortcut and now my line is splitting. How can I redo it? (Control + Z does nothing.) I tried to search on the internet too but didn't find anything useful.
user15096941
-1
votes
3 answers

How to create a hotkey for running command in background instead of foreground in win10?

To execute a my application in foreground in win10'cmd: c:\myapp\app.exe -c c:\myapp\config.json I want to create a hotkey binding with the above cmd command and execute in background. Click on desktop--new--hotkey,write the command…
showkey
  • 482
  • 42
  • 140
  • 295
-1
votes
1 answer

How to get HWND for window

I have this piece of code that works on Winform: public class GlobalHotkey { private int modifier; private int key; private IntPtr hWnd; private int id; public GlobalHotkey(int modifier, Keys key, Form form) { …
falukky
  • 1,099
  • 2
  • 14
  • 34
-1
votes
1 answer

How to stop Wndproc() loop?

I have overridden wndproc() to use Hotkeys. but the form won't close anymore. and onclosing form the program stuck in an infinite loop in wndproc(). protected override void WndProc(ref Message m) { base.WndProc(ref m); if…
Mamo Ghandi
  • 77
  • 2
  • 10
-1
votes
1 answer

C# force register/overwrite hotkeys

I want to force register/overwrite hotkeys...so this code is working fine but it fail's when that hotkey already register for the other application... so I want to overwrite hotkey is it possible? [DllImport("user32", SetLastError=true)] private…
lane
  • 11
  • 4
-1
votes
1 answer

PyQt4 - how to disable all hot keys (native keyboard shortcuts)

I have a PyQt4 GUI that houses numerous libraries (such as Mayavi) which have their own internal keyboard shortcuts natively (already present without putting in any code to set them up). One such key is s in Mayavi - if you press this button while…
ees
  • 327
  • 1
  • 17
-1
votes
1 answer

Exe from python issue

So, I've recently made a software with some basic GUI in Python. I wanted to add also hotkeys, therefore I used module keyboard. Then I "exported" the program to .exe application. On my working PC it worked flawlessly, but when I tried to run it on…
TheOne
  • 330
  • 7
  • 25
-1
votes
1 answer

Best way to use special keys like [CTRL]+[UP] with onkeyup in all browsers

How can I use jQuery onkeyup to use these (multi) keys in all new browsers? CTRL+DOWN CTRL+UP ALT+DOWN ALT+UP DOWN UP
Peter
  • 11,413
  • 31
  • 100
  • 152