#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
F1:: ; Нажмите F1, чтобы начать прокрутку
Loop
{
Click WheelUp
Sleep, 100 ; Пауза 100 миллисекунд между прокрутками
}
return
F2:: ; Нажмите F2, чтобы остановить прокрутку
Reload
return
Esc::ExitApp ; Нажмите Esc, чтобы полностью выйти из скрипта