I've been searching for a while now, but I can't figure out how to display values from a 2D array in a table. The table can be a text object or html object (or even something else), I just need it to look like a table.
I can't get the conditions and actions working together.
If I use Array for each XY element -> append text (or insert into html) Array.curX, Array.curY, I get same values over and over again.
If I use Array for each X element, I only get the first row and the rest are missing.
I tried using system For from 0 to array.height-1 -> append text, value at array(loopindex) but that gives me just the first value. Using array.at(0,loopindex) returns the entire row but just the first row, instead of all 5.
What do I need to do to display the data from my array?