Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

6
  • So, what do you want to happen? Just nothing? Commented Aug 20, 2013 at 11:57
  • Yes, just nothing. Commented Aug 20, 2013 at 12:17
  • Is an AutoHotKey script a valid option? It would catch those key combinations {#1},{#2},{#3}... and then do nothing. Haven't tested it so far but I guess its possible.
    – nixda
    Commented Aug 20, 2013 at 13:11
  • Ok, doing nothing in #1 handler really does nothing (no focusing even if that window does not have focus). So, I'm investigating how to also mimic the original behavior of <kbd>win</kbd>+# via AutoHotKey... Commented Aug 20, 2013 at 13:43
  • Ok, current idea is to intercept those hotkeys, check if current active window (explained here - stackoverflow.com/questions/9115495/… ) is the same as the window which will be triggered by the hotkey (no idea how to do this) and do nothing if they match (easy =), otherwise pass hotkey through to activate/run that window (explained here - stackoverflow.com/questions/2349694/… ). Commented Aug 21, 2013 at 7:45