Skip to content

Instantly share code, notes, and snippets.

@rajesh-s
Created February 7, 2021 11:47
Show Gist options
  • Save rajesh-s/a38ec81ae6398b9140bbbcd881e8e493 to your computer and use it in GitHub Desktop.
Save rajesh-s/a38ec81ae6398b9140bbbcd881e8e493 to your computer and use it in GitHub Desktop.
AutoHotKey macros
#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.
#MaxThreadsPerHotkey 2
*Space:: ; Press Space Key to start or Stop Scrolling endlessly
Toggle := !Toggle
loop
{
If (not Toggle) {
break
}
Send {WheelDown}
}
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment