[font=Times New Roman]Sorry to insult everyone’s intelligence with what is probably a very simple question, but…[/font]
[font=Times New Roman] [/font]
[font=Times New Roman]I have a dynamic text field that I would like to populate with the contents of a pre-loaded array (I know I could have populated the text field directly but this was just for practice using loops.)[/font]
[font=Times New Roman] [/font]
[font=Times New Roman]So we’ve got the text field & the following script in the first frame[/font]
[font=Times New Roman] [/font]
[font=Times New Roman]nums=[“one”,“two”,“three”];[/font]
[font=Times New Roman]for (e in nums){[/font]
[font=Times New Roman]flip_txt.text=nums [e];[/font]
[font=Times New Roman]}[/font]
[font=Times New Roman] [/font]
[font=Times New Roman]I sort of hoped that this would have given me a nice text field with “one, two, three” in it but no such luck; it only gives me “one.” [/font]
[font=Times New Roman] [/font]
[font=Times New Roman]Why?[/font]
[font=Times New Roman] [/font]
[font=Times New Roman]Thank you.[/font]