lunedì, luglio 19, 2010

Flash: Setting the Tab Order of TLFTextFields

A great tip courtesy of Adrian Parr’s Blog:

holder_mc.tf1.tabIndex = 1;

Is now:

InteractiveObject(holder_mc.tlf1.getChildAt(1)).tabIndex = 1;

Read Adrian’s article for all the details.