I need to change text in all textfields in my .fla file (Flash CS3). Looks like i should call JSFL function "fl.findObjectInDocByType("text", fl.getDocumentDOM())" and it would return all elements, but it returns zero length array. I there any another way to iterate threw all library items, and change values of TextField's in MovieClips ?

link|improve this question
feedback

1 Answer

this code works for me, when run on an open FLA from the commands menu:

var doc = fl.getDocumentDOM();
var textFieldArray = fl.findObjectInDocByType("text", doc);
fl.trace (textFieldArray.length+ "text Fields found in "+ doc.name);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.