Docs
RunMacro Documentation
Learn RunMacro from basics to advanced.
Everything you need to start and master RunMacro — from basic commands to advanced automation workflows.

Goto command: jump to a label in RunMacro
What it does
The Goto command moves execution to a Label you choose — instead of running straight down. Use it to repeat a section or skip steps.
When to use it
- Create a loop: return to a Label at the top to run again.
- Skip a block of commands you do not need.
- Combine with condition commands for advanced branching.
Configuration steps
- Make sure a target Label exists in the script.
- Add a Flow › Goto command.
- Choose the target label. Save.
Every option explained
Real example
Example: repeat an action 24/7
- Label
loopat the top. - The commands to repeat.
- Goto
loopat the end — the script loops continuously.
Tips & common mistakes
To cap the number of iterations, use Loop instead of an endless Goto.
An endless Goto loop only stops when you press the RunMacro stop hotkey.
RunMacro