← Back to Documentation

Variables & Conditions

Variables

Variables store values that can be used across your macro.

Creating Variables

Add a "Set Variable" node and specify name and value.

Using Variables

Reference variables in other nodes using {variableName} syntax.

Types

Text: "hello"

Number: 42

Boolean: true/false

Conditions

Conditions control macro flow based on variable values.

Operators

Equals (==)

Not equals (!=)

Greater than (>)

Less than (<)

Contains (text)

Example

Check if counter > 10, then exit loop.