Hello everyone,
I have a 3D array with data inside. I want to move through the array by first looking for the correct value on the X axis, then look on that values Y axis before finally extracting data on the Z axis. To try and put it another way I want to first search my array for one value, then only search the array on the Y axis of that value - so if my first value is at X3, I only want to then search for my next value on the Y associated with X3.
I'm trying to loop through my arrays with Curvalue using this:
array - for each X element
array - cur value | BoxA
array - for each XY element
array - cur value | ItemA Sub item A text | set text to array.at(array.curX, array.curY, array.curZ+3)
But I'm not getting anything out of the array at all. I'm sure I've managed this before, can anyone point me in the right direction?
Thanks