How to add textfields to an array
What is the correct method to add TextFields to an Array? When I declare an Array for:
var myLabels:Array = new Array();
then attempt to populate it with TextFields, using:
var myLabels[i]:TextField = new TextField();
I get a syntac error. Is there another step, or a different method to use to assign it?
