Listing Fonts

by 9re
♥2 | Line 8 | Modified 2009-12-17 15:21:04 | MIT License
play

ActionScript3 source code

/**
 * Copyright 9re ( http://wonderfl.net/user/9re )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/hCBp
 */

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="init();" paddingBottom="0" paddingLeft="0" paddingRight="0" paddingTop="0">
	<mx:Script><![CDATA[
	import flash.text.Font;	
	
	private function init():void { fontList.dataProvider = Font.enumerateFonts(true).sortOn("fontName", Array.CASEINSENSITIVE);}
	
	]]></mx:Script>
	<mx:DataGrid id="fontList" width="100%" height="100%" />
</mx:Application>

Forked