Hi,
I hope this make sense
I was wondering if there was a way (like unix split) within Construct 2 to go through each character within a specific array element.
Meaning that if I have an array with 10 values 0-9 on X, with different names such as
0,0 = DOG
0,1 = CAT
0,2 = FOO
etc
Then I pick one of these from the array, then foreach letter within the selected choice put it somewhere.
So for example I wanted to extract D and put it in square 1, then O put it in square 2 then G in square 3.
I did this before, but what I ended up doing was just creating an array with one x, then 5 height(Y) and go through each on of the Y's, bit this ended up being very long in the tooth.
Would I perhaps need to create an array from the selected number then pop them off or something?
Thanks,