Archive for the ‘font’ Tag
A Collection of Open Source Fonts
I just saw this lovely link to a bunch of open-source fonts at the League of Moveable Type on Bedrich’s blog.
http://www.theleagueofmoveabletype.com/
Enjoy.
Easy way to find out embedded fonts and their names in CS4
var fontList:Array = Font.enumerateFonts();
for (var i:int=0; i<fontList.length; i++ )
{
trace( "font: " + fontList[ i ].fontName );
}
Leave a Comment