Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #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.
- SetKeyDelay , 180, 180 ; first is delay between keypresses, and second is press duration
- ; we are using ControlSend here because Send and SendInput is not affected by SetKeyDelay.
- $g::
- ControlSend, , g, A
- ControlSend, , z, A
- ControlSend, , x, A
- ControlSend, , c, A
- ControlSend, , v, A
- ControlSend, , b, A
- ControlSend, , n, A
- ControlSend, , m, A
- ControlSend, , {space}, A
- ControlSend, , f, A
- ControlSend, , d, A
- ControlSend, , 1, A
- Suspend
- return
- TAB::Suspend, Off
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement