<fx:Declarations>
<mx:ArrayCollection id=”arrColl” source=”{Font.enumerateFonts(true)}”>
<mx:sort>
<mx:Sort>
<mx:fields>
<mx:SortField name=”fontName”/>
</mx:fields>
</mx:Sort>
</mx:sort>
</mx:ArrayCollection>
</fx:Declarations>
<mx:ComboBox id=”fontChange” dataProvider=”{arrColl}” labelField=”fontName” fontSize=”14″ open=”fontChange.dropdown.variableRowHeight = true;” change=”fontChangeHandler(event)”>
<mx:itemRenderer>
<fx:Component>
<mx:Label fontFamily=”{data.fontName}” toolTip=”{data.fontName}”/>
</fx:Component>
</mx:itemRenderer>
</mx:ComboBox>
相关文章: