Do you know how I can use the array.At expression to point the return value to a specific line on the array, say the second or third row?
1 dimensional array: Array.At(1) - returns value at element of index 1
2 dimentional array: Array.At(1,3) - return value at element of index 1 on the X-axis and index 3 on the Y-axis
3 dimentional array: Array.At(1,3,5) - return value at element of index 1 on the X-axis and index 3 on the Y-axis and index 5 on the Z-axis
I highly recommend you reading manual (https://www.construct.net/pl/make-games ... onstruct-3) when you don't get something. You can find there many really useful information. At the beginning you probably should read these two parts:
https://www.construct.net/pl/make-games ... ves/events
https://www.construct.net/pl/make-games ... nd-guides/
It would allow you to get better understanding how evertyhing works in Construct and prevent you from making mistakes that results from many misconceptions <img src="{SMILIES_PATH}/icon_e_wink.gif" alt=";)" title="Wink">
Also, how do I cycle through the Y axis instead of the X? Some of my buttons will cycle downwards through the array instead of across.
You make the same things as in my capx but the only difference is that you change Y index instead of X index. So it would be "Set text to Array.At(0,itemNR)" if you want to cycle through elements of index 0 on X-axis.