dwallen2005: i have limited use of my right hand due to nerve damage. (yes, i was right-handed)
i more or less play mouse-only when it comes to action. i have to switch my good hand between mouse and keyboard.
is this doable?
Maybe try AUTOHOTKEY.
Here a simple Script for AUTOHOTKEY so that you only have to press the fourth Mousebutton once and TAB is held.
Press again and TAB is released. Script is between the lines :)
-----------------------------------------------
; Tab to Mouse Left Side XButton1
XButton1::
Toggle := !Toggle
If Toggle
Send {TAB Down}
else
Send {TAB Up}
return
-----------------------------------------------
Do not copy the --- lines ^^
You can get Auto Hot Key there --->
https://www.autohotkey.com/
Procedure:
-Install AHK
- Open an editor e.g. notepad, notepad++ etc
- Paste above script into the editor
- Save the file as e.g. disco_auto_tab.ahk
- Make sure that the file is saved as an AHK file !!!
- Doubleclick on it
- Enjoy
If you want to to use other mouse buttons then replace XButton1:
- Mouse 5 : replace it with Xbutton2
- Middle : replace it with MButton