How to load system fonts inside a comboBox in Flash AS3?
Hi,
I am building an application that needs system fonts to be loaded inside a comboBox.
I am not sure of the exact way of doing.
Following is the code that loads the system fonts in an array:
var systemFonts:Array = new Array();
var fontNames:Array =new Array();
systemFonts = Font.enumerateFonts(true);
systemFonts.sortOn("fontName");
for(var i:int = 0; i < systemFonts.length; i++)
{
fontNames.push(systemFonts[i].fontName);
}
I wanna know what to do after this so that I can load the fonts inside the comboBox.
Regards,
Avi