Im having a brain freeze…
var initialx:Number = 50;
var initialy:Number = 50;
for(var i:Number = 0;i<10;i++){
var newName:TextField= new TextField();
newName._name = “myText”
this.createTextField(newName._name+i,100+i,initialx,initialy,50,15);
newName._name = newName._name + i;
newName.text = “hello”;
newName.type = “input”;
initialy += 10;
}
it’s creating the fields, naming them properly, but I cant address them to change their border properties or the type property, or the text property, for that matter.