In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

PCにインストールされているフォントの一覧

Get Adobe Flash player
by paq 12 Mar 2009
package {
    import flash.display.Sprite;
    import flash.text.*;
    
    public class FlashTest extends Sprite {
	    public function FlashTest() {
		    var str:String = "★PCにインストールされているフォントの一覧★\n";
		    
		    var allFonts:Array = Font.enumerateFonts(true);
		    allFonts.sortOn("fontName", Array.CASEINSENSITIVE);
		    for(var i:int=0;i<allFonts.length;i++){
			    str += allFonts[i].fontName + "\n";
		    }
		    
		    var textField:TextField = new TextField();
		    textField.width = textField.height = 465;
		    textField.text = str;
		    
		    addChild(textField)
	    }
    }
}