Hi,
I'm trying to create an application that is the dynamic creation of
fields (textarea), this is okay! but I need to have access to these
textareas to get the values to write in a file. How to access these
values?
This is the code for creation of the field:
var newText:TextArea = new TextArea();
newText.styleName = "textNew";
newText.id = "newText" + countObjects;
newText.name = "newText" + countObjects;
newText.width = 150;
newText.height = 70;
newText.x = pt.x + 20;
newText.y = pt.y + 20;
Sorry for bad English
Thanks, Tiago.