#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
1:: Click Right
return
2:: MouseMove, 0, 75, 0, R
return
3:: Click
return
`:: ; Pressing ` (~/console key) turns the AHK icon in your system tray to red to let you know that's it's suspended.
Suspend, Permit
if not A_IsSuspended
{
Menu, Tray, Icon, %A_AhkPath%, 5, 1
Suspend, On
}
else
{
Menu, Tray, Icon, %A_AhkPath%, 1, 0
Suspend, Off
}
return