Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #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.
- #SingleInstance Force
- ;#NoTrayIcon
- SetKeyDelay, -1, 1
- SetControlDelay, -1
- SetMouseDelay, -1
- SetWinDelay, -1
- ListLines, Off
- PID := DllCall("GetCurrentProcessId")
- ProcessSetPriority High, %PID%
- Hotkey, ^1, Exit
- Hotkey, g, Rebind_G_Key
- Rebind_G_Key(){
- Send {LCtrl Down}
- Send {G Down}
- Sleep 250
- Send {LCtrl Up}
- Send {G Up}
- }
- Exit(){
- ExitApp
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement