Repeated actions with macros

Logelloop Macro editor

It is possible to make repeated actions in Macros. This is two manners : DoRepeat// Everything here is repeated indefinitelyWhile true or : RepeatWhile true// Everything here is repeated indefinitely. EndRepeat If you want you can add a break in this repeated action.DoRepeat// Everything here is repeated indefinitely. Sleep 10 // Sleep 10 will stop the loop for 10 milliseconds While true The macro can also wait a user action to repeat the action