Autohotkey combine mouse and keyboard? -


anyone knows why wont work in autohotkey?:

~rbutton & ~lbutton & ~t:: 

it says invalid hotkey. why?

thanks.

combinations of 3 or more keys not supported (https://autohotkey.com/docs/hotkeys.htm#combo).

try this:

#noenv #singleinstance force #installkeybdhook #installmousehook #usehook  #if getkeystate("rbutton","p") && getkeystate("lbutton","p")       t::      z::      k::      l::     u::         msgbox, rbutton + lbutton + optional key     return  #if 

Comments

Popular posts from this blog

'hasOwnProperty' in javascript -

python - ValueError: No axis named 1 for object type <class 'pandas.core.series.Series'> -

Command prompt result in label. Python 2.7 -