I want to loop through a movie clip and process the contents of only objects that are textinput or comboboxes.
for (var i in _root.form) { trace(_root.form[i]); }
describeType() is about as close as you can get in as2.
I tried this:
trace(describeType(_root.form));
but got undefined. not sure if I am using it right. I also added import flash.utils.*; to the code.
Still reading up on describeType but any suggestions as to where I am going wrong would be much appreciated.
_root.form doesn't exist when you execute that trace statement. fix that.