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

Set a Label to navigate a workflow in RunMacro
What it does
The Label command places a named marker in the script. It does nothing on its own, but it is the target that Goto, Random Goto, and IF/ELSE jumps aim at. It is the foundation for loops and branching.
When to use it
- Mark a return point to build a loop with Goto.
- Create a destination for the IF/ELSE branches of condition commands.
- Split a script into easy-to-navigate markers.
Configuration steps
- Add a Flow › Label command.
- Give it a memorable, unique label name (e.g.
start). - In Goto or condition commands, choose this label as the target. Save.
Every option explained
Real example
Example: an endless loop with Label + Goto
- Place a Label named
loopat the top. - Add the action commands.
- End with a Goto to
loopto repeat.
Tips & common mistakes
If a Goto points to a missing label, RunMacro pauses and reports an error — check the label name.
RunMacro