Can this be coded?

Soldato
Joined
25 Sep 2009
Posts
3,630
I have an idea about a program like AutoHotkey, but slightly easier to use. It would have to disable a certain key (eg. Windows key) when a certain specified task is ran (like a game). Pushing out the boat further, could someone code this (I'm a beginner programmer) for me in C# or C++ so I can get a rough clue what I want to learn.
 
Yes, a crude way would be to get a global keyboard hook, intercept all keys, check what process is top and if you want to block the key press just don't forward the message.
 
Back
Top Bottom