Yes I know that but feeding the values is where I could not understand. What I have just done now is this as a test:
Set Array object values as follows: Width = 1, Height = 1, Depth = 3
On start of layout: set array value at 0 to "2,1,3"
So in debug mode you see this in array: Data 0 = 2,1,3,0,0
When I click the button, it only plays the value 2 and ignores the rest values.
So it looks like doing "2,1,3" is seen as one value rather than 3 separate values.
How do i insert more than 1 value in the array so it should look like 2,1,3 rather than 2,1,3,0,0