<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Develop a Useful Font Picker App with ActionScript 3.0</title>
	<atom:link href="http://active.tutsplus.com/tutorials/actionscript/develop-a-useful-font-picker-application-with-actionscript-30/feed/" rel="self" type="application/rss+xml" />
	<link>http://active.tutsplus.com/tutorials/actionscript/develop-a-useful-font-picker-application-with-actionscript-30/</link>
	<description>Flash, Flex &#38; ActionScript Tutorials</description>
	<lastBuildDate>Sat, 21 Nov 2009 17:18:16 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Hollis roberts</title>
		<link>http://active.tutsplus.com/tutorials/actionscript/develop-a-useful-font-picker-application-with-actionscript-30/#comment-6900</link>
		<dc:creator>Hollis roberts</dc:creator>
		<pubDate>Tue, 15 Sep 2009 01:24:38 +0000</pubDate>
		<guid isPermaLink="false">http://flash.tutsplus.com/?p=922#comment-6900</guid>
		<description>How i get my embed font to work, i embed all the fonts that i want 1st  direct into the library also selecting export for actionscript and then I replace lines 52-62 
systemFonts = Font.enumerateFonts(true);
			systemFonts.sortOn(&quot;fontName&quot;);

			/* Convert the Fonts Objects to Strings */

			for (var i:int = 0; i &lt; systemFonts.length; i++)
			{
				fontNames.push(systemFonts[i].fontName);
			}

With this
var allFonts:Array = Font.enumerateFonts(true);
allFonts.sortOn(”fontName”, Array.CASEINSENSITIVE);
var embeddedFonts:Array = Font.enumerateFonts(false);
embeddedFonts.sortOn(”fontName”, Array.CASEINSENSITIVE);
for (var i:int = 0; i &lt; embeddedFonts.length; i++)
{
fontNames.push(embeddedFonts[i].fontName);
}</description>
		<content:encoded><![CDATA[<p>How i get my embed font to work, i embed all the fonts that i want 1st  direct into the library also selecting export for actionscript and then I replace lines 52-62<br />
systemFonts = Font.enumerateFonts(true);<br />
			systemFonts.sortOn(&#8221;fontName&#8221;);</p>
<p>			/* Convert the Fonts Objects to Strings */</p>
<p>			for (var i:int = 0; i &lt; systemFonts.length; i++)<br />
			{<br />
				fontNames.push(systemFonts[i].fontName);<br />
			}</p>
<p>With this<br />
var allFonts:Array = Font.enumerateFonts(true);<br />
allFonts.sortOn(”fontName”, Array.CASEINSENSITIVE);<br />
var embeddedFonts:Array = Font.enumerateFonts(false);<br />
embeddedFonts.sortOn(”fontName”, Array.CASEINSENSITIVE);<br />
for (var i:int = 0; i &lt; embeddedFonts.length; i++)<br />
{<br />
fontNames.push(embeddedFonts[i].fontName);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: david</title>
		<link>http://active.tutsplus.com/tutorials/actionscript/develop-a-useful-font-picker-application-with-actionscript-30/#comment-6347</link>
		<dc:creator>david</dc:creator>
		<pubDate>Tue, 01 Sep 2009 11:07:42 +0000</pubDate>
		<guid isPermaLink="false">http://flash.tutsplus.com/?p=922#comment-6347</guid>
		<description>Can someone help me please on how to get this to work with embedded fonts

please</description>
		<content:encoded><![CDATA[<p>Can someone help me please on how to get this to work with embedded fonts</p>
<p>please</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jim</title>
		<link>http://active.tutsplus.com/tutorials/actionscript/develop-a-useful-font-picker-application-with-actionscript-30/#comment-6346</link>
		<dc:creator>jim</dc:creator>
		<pubDate>Tue, 01 Sep 2009 10:51:27 +0000</pubDate>
		<guid isPermaLink="false">http://flash.tutsplus.com/?p=922#comment-6346</guid>
		<description>sitll cant get this to work on embedded fonts only
it keeps giving me 

1093: Syntax error.</description>
		<content:encoded><![CDATA[<p>sitll cant get this to work on embedded fonts only<br />
it keeps giving me </p>
<p>1093: Syntax error.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hollis</title>
		<link>http://active.tutsplus.com/tutorials/actionscript/develop-a-useful-font-picker-application-with-actionscript-30/#comment-4747</link>
		<dc:creator>Hollis</dc:creator>
		<pubDate>Fri, 31 Jul 2009 17:52:08 +0000</pubDate>
		<guid isPermaLink="false">http://flash.tutsplus.com/?p=922#comment-4747</guid>
		<description>I find how to show only my embedded fonts instead of system fonts, all you need to do is replace line 52-62 with  
			
var allFonts:Array = Font.enumerateFonts(true);
allFonts.sortOn(&quot;fontName&quot;, Array.CASEINSENSITIVE);

var embeddedFonts:Array = Font.enumerateFonts(false);
embeddedFonts.sortOn(&quot;fontName&quot;, Array.CASEINSENSITIVE);

for (var i:int = 0; i &lt; embeddedFonts.length; i++)
{
fontNames.push(embeddedFonts[i].fontName);
}</description>
		<content:encoded><![CDATA[<p>I find how to show only my embedded fonts instead of system fonts, all you need to do is replace line 52-62 with  </p>
<p>var allFonts:Array = Font.enumerateFonts(true);<br />
allFonts.sortOn(&#8221;fontName&#8221;, Array.CASEINSENSITIVE);</p>
<p>var embeddedFonts:Array = Font.enumerateFonts(false);<br />
embeddedFonts.sortOn(&#8221;fontName&#8221;, Array.CASEINSENSITIVE);</p>
<p>for (var i:int = 0; i &lt; embeddedFonts.length; i++)<br />
{<br />
fontNames.push(embeddedFonts[i].fontName);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Georgi</title>
		<link>http://active.tutsplus.com/tutorials/actionscript/develop-a-useful-font-picker-application-with-actionscript-30/#comment-4727</link>
		<dc:creator>Georgi</dc:creator>
		<pubDate>Fri, 31 Jul 2009 12:32:05 +0000</pubDate>
		<guid isPermaLink="false">http://flash.tutsplus.com/?p=922#comment-4727</guid>
		<description>Great tut Carloz !</description>
		<content:encoded><![CDATA[<p>Great tut Carloz !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hollis</title>
		<link>http://active.tutsplus.com/tutorials/actionscript/develop-a-useful-font-picker-application-with-actionscript-30/#comment-4651</link>
		<dc:creator>Hollis</dc:creator>
		<pubDate>Thu, 30 Jul 2009 06:38:57 +0000</pubDate>
		<guid isPermaLink="false">http://flash.tutsplus.com/?p=922#comment-4651</guid>
		<description>Very cool tutorial, but if i want only my embed fonts in the picker</description>
		<content:encoded><![CDATA[<p>Very cool tutorial, but if i want only my embed fonts in the picker</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://active.tutsplus.com/tutorials/actionscript/develop-a-useful-font-picker-application-with-actionscript-30/#comment-4557</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Tue, 28 Jul 2009 01:58:52 +0000</pubDate>
		<guid isPermaLink="false">http://flash.tutsplus.com/?p=922#comment-4557</guid>
		<description>Thas is cool , good tutorial</description>
		<content:encoded><![CDATA[<p>Thas is cool , good tutorial</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flash tutorial &#124; 10 Cool flash tutorials &#124; Lemlinh.com</title>
		<link>http://active.tutsplus.com/tutorials/actionscript/develop-a-useful-font-picker-application-with-actionscript-30/#comment-4459</link>
		<dc:creator>Flash tutorial &#124; 10 Cool flash tutorials &#124; Lemlinh.com</dc:creator>
		<pubDate>Fri, 24 Jul 2009 07:53:57 +0000</pubDate>
		<guid isPermaLink="false">http://flash.tutsplus.com/?p=922#comment-4459</guid>
		<description>[...] Read tutorial [...]</description>
		<content:encoded><![CDATA[<p>[...] Read tutorial [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cacao</title>
		<link>http://active.tutsplus.com/tutorials/actionscript/develop-a-useful-font-picker-application-with-actionscript-30/#comment-3923</link>
		<dc:creator>Cacao</dc:creator>
		<pubDate>Thu, 09 Jul 2009 20:30:05 +0000</pubDate>
		<guid isPermaLink="false">http://flash.tutsplus.com/?p=922#comment-3923</guid>
		<description>Hi, this is great. But what if i wanted to embed the fonts so i can use the swf anywhere? Is it posible?</description>
		<content:encoded><![CDATA[<p>Hi, this is great. But what if i wanted to embed the fonts so i can use the swf anywhere? Is it posible?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ricardo</title>
		<link>http://active.tutsplus.com/tutorials/actionscript/develop-a-useful-font-picker-application-with-actionscript-30/#comment-3784</link>
		<dc:creator>Ricardo</dc:creator>
		<pubDate>Mon, 06 Jul 2009 15:22:09 +0000</pubDate>
		<guid isPermaLink="false">http://flash.tutsplus.com/?p=922#comment-3784</guid>
		<description>I also get this error:

TypeError: Error #1010: A term is undefined and has no properties.
at Main/loadFonts()
at Main()

You&#039;ve developed a very useful application with relatively simple code, but this isn&#039;t as much as a tutorial as it is a description of all the code you used, and there&#039;s a difference. A little more depth about what does what would be much appreciated. But thanks for the time, even though I can&#039;t get this to work at all.</description>
		<content:encoded><![CDATA[<p>I also get this error:</p>
<p>TypeError: Error #1010: A term is undefined and has no properties.<br />
at Main/loadFonts()<br />
at Main()</p>
<p>You&#8217;ve developed a very useful application with relatively simple code, but this isn&#8217;t as much as a tutorial as it is a description of all the code you used, and there&#8217;s a difference. A little more depth about what does what would be much appreciated. But thanks for the time, even though I can&#8217;t get this to work at all.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!--
This site's performance optimized by W3 Total Cache:

W3 Total Cache improves the user experience of your blog by caching
frequent operations, reducing the weight of various files and providing
transparent content delivery network integration.

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 2/7 queries in 0.011 seconds using memcached

Served from: psdtutsplus.com @ 2009-11-21 13:31:03 -->