I followed the tutorials and I know what an array is in other languages, but I don't understand how they work in c2.
I'm posting the c2 code and my interpretation about how should they work in js.
Array set size to (3,0,0) //array[0] = false;array[1]=false;array[2]=false;
Array set value at 0 50 //array[0] = 50;
Array set value at 1 120 //array[1] = 120;
Array set value at 2 260 //array[2] = 260;
Create Object Circle on layer 1 at (array.At(0),0)
//I expect to create object circle at 50,0 but it's not working why is that?
Thanks