It repeats all its actions and subevents with a named loop and a range of loop indices. For example,
+ Start of layout
-> Start loop "blah" 100 times
+ On loop "blah"
-> Actions to do in the loop
is identical to:
+ For "blah" from 1 to 100
-> Actions to do in the loop
Faster, fewer events, more compact, still dead easy If you don't need the loop index you can just use 'Repeat':
+ Repeat 100 times
-> Actions to do in the loop