I'm instantiating a group of RadioButton components into a Sprite and then later adding it to the display list. When the latter occurs, I can visibly see the font of the RadioButtons' labels changing from a serif to sansserif—but I have NO code to that effect anywhere. This occurs long after the components are actually instantiated, when they (via their parents) are added to the displaylist.
In Question_UI.answersContainer.answer:
answerUI = new RadioButton();
answerUI.group = rbg;
answerUI.label = text;
answerUI.tabIndex = id;
answerUI.textField.autoSize = TextFieldAutoSize.LEFT;
later...
ui.questionHolder.addChild(currentQuestion.ui);
Any ideas? I've triple-checked the obvious, but there's NO code regarding the font of the label at all. It seems to only have to do with being added to the displaylist.