Posted October 23, 2019
Tired of holding down TAB? Want to play mouse only? Maybe this helps!
If you agree with the following then I maybe have a solution for you:
- Holding down TAB is a little bit enervating ?
- You want to play the game mouse only ?
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 ^^
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
If you agree with the following then I maybe have a solution for you:
- Holding down TAB is a little bit enervating ?
- You want to play the game mouse only ?
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 ^^
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
Post edited October 24, 2019 by Cromwell