-
-
Save fursiol0800/f62f6535b52af2d6996a650a488054b6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| KeepAlive(ColabWinTitle, Interval){ | |
| Loop | |
| { | |
| Sleep, 1000 * 3 | |
| if WinExist(ColabWinTitle) | |
| { | |
| WinActivate ; Automatically uses the window found above. | |
| WinMaximize ; same | |
| Sleep, 2000 | |
| MouseClick, left, 1750, 250, 1, 30 | |
| Send, {WheelDown 10} | |
| Send, {WheelDown 20} | |
| send, {PgDn 2} | |
| MouseClick, left, 1750, 500, 1, 30 | |
| send, {PgUp 4} | |
| send, {PgDn 8} | |
| } | |
| else{ | |
| MsgBox, , Halt : No Such Window , Did not find Window : %ColabWinTitle% | |
| Return | |
| } | |
| Sleep, Interval | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment