I have 25 dynamic text fields. If I could, I’d just assign their text by calling the array in the text property var, but that doesn’t work.
My text field variables are simply B1, B2, B3, B4, B5, I1, I2, I3, I4. . . (I’m populating a bingo card)
I’m using 5 Arrays to get the 25 numbers. bArray, iArray. . . and so on.
Now, obviously I can fill in my text fields by assigning each variable separately, however, I’d like a shorter solution.
Instead of coding B1=bArray[0], B2 =bArray[1]
I was looking for a way to assign all the variables in a for loop… or something… any advice?
I hope this isn’t annoyingly basic. I’m a designer with only rudimentary programming skills in actionscript.