Hey there!
I am currently working alot with fast loops. Sometimes i am unsure if my code does what i want so i try to find a way to make loops artifically slower to watch what they do. You know any solution?
But what I sometimes do is add a String object and some extra actions to keep a log of what's going on. For example:
(On loop "FastThing")
- Set "String" Alterable Text to "Loop Index: " & String$(LoopIndex("FastThing")) & Newline$
- Create "Active" at 0,0
- Set X("Active") to LookIndex("FastThing")
- Set "String" Alterable Text to String("String") & "Created Active at X" & LoopIndex("FastThing") + Newline$
etc.
The pseudo-code above is most likely wrong (TDC removes plus symbols) but hopefully you get the idea.