2015-11-20 12:08:53 +00:00
|
|
|
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
|
|
|
|
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
|
|
|
|
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
|
|
|
|
|
2016-05-10 08:00:29 +00:00
|
|
|
; Shift-T causes the mousewheel to scroll down.
|
|
|
|
; I used this to throw lots of dosh in Killing Floor.
|
2015-11-20 12:08:53 +00:00
|
|
|
+T::
|
|
|
|
While GetKeyState("t", "P")
|
|
|
|
{
|
|
|
|
Click WheelDown
|
|
|
|
Sleep 20
|
|
|
|
}
|
|
|
|
Return
|