AS3 Embedded Fonts list and their names

5k Views Asked by At

How to get a list of all embedded fonts with their names using AS3.

1

There are 1 best solutions below

4
On

Use Font.enumerateFonts().

var fonts:Array = Font.enumerateFonts();
for each(var font:Font in fonts)
    trace( font.fontName+":"+font.fontType );