AS3 Embedded Fonts list and their names

5.1k views Asked by At

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

1

There are 1 answers

4
weltraumpirat On

Use Font.enumerateFonts().

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