Using autohotkey to activate letters

I've read a lot about this on the net, it's not possible as far as I know. As autohotkeys

you can run the script with the help of an activator keys ( win, shift, ctrl, alt) + one letter(eg win+ nopens the notebook, etc.). So the question is whether there is any hack or way or something else to activate a script with an activator key and two or more keys.
Example: win+ n+ o(while all keys are pressed) opens notepad, or ctrl+ n+ o+ iopens chrome, etc. Ask someone to figure out how to do this. This will be a life jacket.

+3


source to share


1 answer


"to" = two?




ctrl+n+o+i

opens chrome

#if getKeyState("n") & getKeyState("o")
^i::run chrome.exe
#if

      

+3


source







All Articles