I just thought this macro script would be of interest to autohotkey users.
It will automatically get you docking permission on [ctrl]+[`] and reset the left menu, providing your left hand menu is configured for key [1], the activation key is [spacebar] and the menu is set on the first panel, which it nearly always is as you have to select the target to approach the station. I have tested it on my rig and after teething troubles found these timings are reliable.
If anyone else has other autohotkey scripts feel free to share them in this thread.
I have tried using macro keyboards and tbh they have proved very limited, autohotkey is much more flexible. You just set up a script to load in the startup menu in Win7 and you can add whatever macros you want, runs alongside all other progs np.
It will automatically get you docking permission on [ctrl]+[`] and reset the left menu, providing your left hand menu is configured for key [1], the activation key is [spacebar] and the menu is set on the first panel, which it nearly always is as you have to select the target to approach the station. I have tested it on my rig and after teething troubles found these timings are reliable.
Code:
^`::
setkeydelay, 5, 50
send, 1ee s qq1
exit
If anyone else has other autohotkey scripts feel free to share them in this thread.
I have tried using macro keyboards and tbh they have proved very limited, autohotkey is much more flexible. You just set up a script to load in the startup menu in Win7 and you can add whatever macros you want, runs alongside all other progs np.