Last active
September 29, 2017 08:31
-
-
Save apkd/966900e210d449ba4c1b1c2dc6727653 to your computer and use it in GitHub Desktop.
AHK scripts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WheelRight::^#Right | |
WheelLeft::^#Left |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
^SPACE::Winset, Alwaysontop, , A ; ctrl+space | |
^SC029::Winset, Alwaysontop, , A ; ctrl+` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#NoEnv | |
SendMode Input | |
SetWorkingDir %A_ScriptDir% | |
mode = right | |
`:: | |
if (mode = "right") | |
{ | |
sendinput, ^#{Right} | |
mode = left | |
} | |
else | |
{ | |
sendinput, ^#{Left} | |
mode = right | |
} | |
return | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment