Reputation: 3634
I have been reading a lot about this on the net, it's not possible as far as I know. In autohotkeys
you can trigger script with activator keys (win, shift, ctrl, alt) + one letter(e.g win+n opens notepad etc..). So the question is there any hack or way around or whatever, to be able to activate script with activator key and two or more keys.
Example: win+n+o (while all keys are pressed down) opens notepad, or ctrl+n+o+i opens chrome, etc. Have someone figure out how to do this. It would be a livesaver.
Upvotes: 3
Views: 212
Reputation: 10872
"to" = two?
ctrl+n+o+i
opens chrome
#if getKeyState("n") & getKeyState("o")
^i::run chrome.exe
#if
Upvotes: 3