Counter
Counter for loop control with conditional outputs.
What It Does
Section titled “What It Does”- Maintains a count that decrements each execution
- Outputs “continue” while count > 0
- Outputs “finished” when count reaches 0
- Auto-resets for next loop
Configuration Options
Section titled “Configuration Options”| Option | Type | Description |
|---|---|---|
| Counter ID | Text | Unique identifier (for multiple counters) |
| Count Type | Select | fixed or random |
| Fixed Count | Number | Exact iterations (default: 5) |
| Min Count | Number | Minimum iterations (for random) |
| Max Count | Number | Maximum iterations (for random) |
Output Connections
Section titled “Output Connections”- continue → Count > 0, loop should repeat
- finished → Count = 0, loop complete
Example: Like 5 Posts Loop
Section titled “Example: Like 5 Posts Loop”🖼️ [Image: Workflow showing Counter looping through Like Post → Swipe, then exiting to End when finished]
Start → Counter (5x)
- 🔁 continue → Like Post → Swipe (next post) → (back to Counter)
- ✅ finished → End
When to Use
Section titled “When to Use”- Creating loops with specific iteration counts
- Limiting actions per session
- Randomizing loop lengths