AS3 Embedded Fonts list and their names

actionscript-3, embedded-fonts

Solution

Use `Font.enumerateFonts()`.

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

Problem

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

Original source