5 методов создания бесконечного цикла в AutoHotkey

Метод 1: использование команды Loop:

Loop
{
    ; Code to be repeated infinitely
}

Метод 2: использование цикла While:

While true
{
    ; Code to be repeated infinitely
}

Метод 3: реализация метки с помощью оператора Goto:

MyLoop:
    ; Code to be repeated infinitely
Goto MyLoop

Метод 4. Использование рекурсии:

MyFunction()
{
    ; Code to be repeated infinitely
    MyFunction() ; Call the function again
}
MyFunction() ; Start the recursion

Метод 5. Использование цикла SetTimer:

SetTimer, MyLoop, 100 ; Call the label every 100 milliseconds (adjust as needed)
return
MyLoop:
    ; Code to be repeated infinitely
return