I have some dynamic textArea in a flex mobile project, created in this way:
var textArea:TextArea = new TextArea();
textArea.id = "txtCreaTaskAnalysis" + contatoreNumeroTextAreaCreaTaskAnalysis;
textArea.left = 235;
textArea.right = 90;
textArea.horizontalCenter = 85;
textArea.height = 200;
contatoreNumeroTextAreaCreaTaskAnalysis += 1;
this.gruppoCreaTaskAnalysis0.addElement(textArea);
When a save button is clicked, I want to save them text in a .txt file. I know how to create and write in a flex mobile project, but I can't find the correct way to select the textAreas.. How can I do that?
Thank you in advance..