Loops
3 posts tagged with "Loops"
foreach
The foreach action loops over a group / column. It belongs to the loops category within the control area.
Action Syntax
foreach $variable run [file]
A variable name starting with $ followed by a value followed by A file reference
foreach $variable
A variable name starting with $
foreach $variable as $variable
A variable name starting with $ followed by a value followed by A variable name starting with $
Valid sizes
tiny
small
medium
large
extra
Examples
// Basic Usage
foreach $V run [block]
Action code: 2044699913
Version: 0.6.4-2
Last updated: 2025-06-13
loop
The loop action loop over a variable. It belongs to the loops category within the control area.
Action Syntax
loop 123 times
A numeric value followed by a value
loop $variable times
A variable name starting with $ followed by a value
Valid sizes
tiny
small
medium
large
extra
Examples
// Basic Usage
loop 10 times
// Using Variables
// Display dynamic content from variables
loop $number times
Action code: 697386547
Version: 0.6.4
Last updated: 2025-06-13
repeat
The repeat action repeat an action or group of actions multiple times. It belongs to the flow category within the system area.
Action Syntax
repeat 123 times
A numeric value followed by a value
repeat $variable times
A variable name starting with $ followed by a value
Tags
index-name
use this name as the index variable. Default is $index
Examples
// Basic Usage
repeat 10 times
// Using Variables
// Display dynamic content from variables
repeat $foo times
Action code: 1743947055
Version: 0.6.4-2
Last updated: 2025-06-13