Page 1 of 1

how to "bind" left mouse click to a special keyboard key?

Posted: 19 Jun 2018, 13:12
by winnetou
Hello, I just bought this this keyboard and I would like to know how do I bind the left mouse click to the "G1" key (the one on the left) since the keyboard software does not have the option to do so.

Thanks.

Re: how to "bind" left mouse click to a special keyboard key?  Topic is solved

Posted: 20 Jun 2018, 15:59
by DyaTactic
Take a look at this help page of Autohotkey: https://autohotkey.com/docs/KeyList.htm#SpecialKeys
I am not fammilliar with the keyboard, maybe someone else is. Anyway, you can also try to program the G1 key to say 'Ctrl + Alt + U' (hoping it has no other function) and catch the hotkey in AHK using this code:

Code: Select all

^!u::
	; Some commands:
	MsgBox, Hotkey detected!
Return
Good luck