Last active
November 24, 2024 14:50
-
-
Save Shakil-Shahadat/7f8ba9c9232f147e4855b18f117f036d to your computer and use it in GitHub Desktop.
A sample AutoHotKey script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Requires AutoHotkey v2.0 | |
; Reset coordinate system to be based on screen | |
CoordMode "Mouse", "Screen" | |
Sleep 7000 | |
Loop 5 | |
{ | |
; Click | |
Click 395, 400 ; | |
Sleep 500 ; | |
; Press Delete | |
Send "{Delete}" | |
Sleep 500 ; | |
; Press Page Down | |
Send "{PgDn}" | |
Sleep 500 ; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment