I’m writing a function that goes through a level or movieclip and their nested movieclips and checks for textfields. If the item is an “instanceof” TextField, then it stores it into an array to be returned.
My main issue is that the function is storing even static textfields into the array and returning them. The traced location for these static textfields is “_level0.movieclip.instance1”. I can even change the “text” value of the static field if I reference that path to the field.
Is there a filter or type attribute that I can use to filter between dynamic (instanced named) textfields and static ones?
** I’ve tried the “type” property on the instance textfield, and it traces out “dynamic”. **