/ Published in: ActionScript 3
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
var fonts:Array = Font.enumerateFonts(); var font:Font; for(var i:int; i<fonts.length;i++) { font = fonts[i]; trace("name : "+font.fontName); trace("style : "+font.fontStyle); trace("type : "+font.fontType); }