Hello ,
I have an array which has x,y,z dimension.
On Z dimension , i have five values , "orange" , "apple" , "strawberry" , "carrot" , "banana".
I need to get all values and print them on text box.
I am doing like this ;
Now , i have several problems ,
I can't pull all array values to textbox2 to show it who type "banana"
I tried to use Array.CurZ expression or Array.Depth it didn't work.I checked getting random values from array , i understand the perfectly yet i can't managed to list all values to show in textbox2.
Could you please show how i can make this right or should i make it same Array.at expressions for all choices to list on textbox2 ?
Edit;Checked several times here scirra/manual/108/array ; couldnt figure it out which expression should i used it ...
edit 2 ;
I can do it like array.at(0,0,1)&","&array.at(0,0,2) and it works good but if i have hundreds values in array , it is not the good way to print it.
So is there any trick on expressions that i do not know about to print all of them ?