Thanks Mack for your respond
Not exactly what I want.
I want to read the first item of the array then use length to see how many letters After that I want to clone four blank boxes on the page Finally when I press abutton I want the four letters to be shown in each textbox according to the order I put them in
By the way I can do it by only one item like this
First I create a text box and call it TC .
then I'll out this script for abutton
Code:
words1 = "fish,cat,rat,mouse,house,boat,float".split(",")
for (var I=1; I <= words1[0].length-1;I++)
{
var ty=TC.GetYPosition()
var tx=TC.GetXPosition()
TC.CloneObject(tx,ty+20*I,true)
}
THIS will clone four text boxes under each other
because the first item in the array is 4 letters.
What I dont know
1.how to do the same thing for all the array.
2. how to put the letters into the boxes.
I hope this clearify my question.