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

javascript - Confirm a form & display message if form is valid with JQuery -

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

ionic framework - Meteor - Error: Failed to execute 'insertBefore' on 'Node' -