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
Post a Comment