I am trying to make an array which will generate random numbers for all of it's values and display those values one at a time in a text box, one second between showing each. My array is a 4X9. At first, I used:
For each XY Element
>set value at(Array.CurX, Array.CurY) to random(100)
To show the results, I used:
For each XY Element
>Set text to Array.CurValue
>wait 1 second
What I got was a text box which flashed with random numbers, as if it was simply running the loop over and over, ignoring the "wait." I might just be dong something obviously wrong and stupid, but my understanding is that the "for each" loop will only run once for every value in an array... if anyone would be so kind as to impart their knowledge upon a lesser being, it would be greatly appreciated :)