Re: How do i configure my right moue button to move forward? and middle button to.
Just a quick follow up, this would be the script to make the right mouse button behave as a different key. In this example, b is the alternate key. So you would create an .ahk file once Autohotkey was installed, and type the following in the file:
Rbutton::b
Once you activate the file, Autohotkey makes every press of the mouse button return a b. Then go into key bindings and set b as the Move Forward key.
Unfortunately doing this would make mouse look non-functional I think. The following is the script for the middle mouse button, which would be preferrable:
Mbutton::b
Note you have to right click the icon on your task bar to exit out of the autohotkey script, so you may want to make another key act as the right mouse button just in case. But you can also just kill the autohotkey process to exit out if needed.
Hope that helps.