Hello,
I’m trying to use jsfl to change text of all the tlfText in my fla file.
var results = fl.findObjectInDocByType("tlfText", dom);
for each (var tf in results) {
tf.obj.setTextString('good'); //would have worked if text field wasn't TLF
}
Apparently TLF Text doesn’t support setTextString.
How can I change the text of TLF text fields ?