Seems that each loop cycle is excecuted one after another not respecting the wait, so I tried this:
<font face="Courier New, Courier, mono">
For "slowDownLoop" from 1 to 5
System wait 1.0 * LoopIndex("slowDownLoop") seconds
txtBox set text to "LoopIndex: " & LoopIndex("slowDownLoop")
</font>
but by the time the first second has passed the Loop has already finished running and the LoopIndex is already "5"
Can�t figure this out without using a helper variable.