I'm trying to program a labrynth creator routine. Doing it by means of events is quite complicated for me.
After changing the code to debug it, I tested with this lines at "System - On Start of Layout":
MyArray Set size to (4,2,1)
MyArray Set value at(0,0) to 0
[... more MyArray() initialization ...]
MyArray Set value at(2,1) to 1
TextBox Set text to ""&MyArray.At(2,1)
TextBox displays "0".
Should I wait a frame or something before MyArray gets the value?
How can I wait until I'm sure all values have propagated through the matrix?