I have a different approach to set the distance between the distance.
I made the distance relative to the word's length, using this:
(Download .capx)
why you do :
WAIT 0.5*loopindex seconds
and
ScrollingBox |Set text tokenat(Word,count,"")
WAIT 0.5*loopindex seconds:
This sets the distance between the words. If WhosWho removed that condition, the words would spawn immediately, all at once, all on top of each other. The lower 0.5, the bigger the distance.
ScrollingBox | Set text tokenat(Word,count," ")
To understand this, you first need to understand the expression tokenat.
tokenat separates a string into multiple pieces by using a separator. Here, the separator is " ", because words are separated by a space.
WhosWho takes the initial sentence and splits it up into the single words by using tokenat.
He then takes the appropriate word by using "count" as an index to find the correct token.
Clear?
If not, just ask WhosWho again.
Btw: Good job, WhosWho considering that you are new to C2!