I've got a question about actionscript
E.g. three textboxes with names country1, country2, country3
how do I insert text into those textboxes using dynamic variables
e.g.
a="1"
b="2"
c="3"
["country" + a].text = "AAA"
["country" + a].text = "BBB"
["country" + a].text = "CCC"
Thanks