<?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 for The Jevin Kones™ blog</title>
	<atom:link href="http://www.jevinkones.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jevinkones.com</link>
	<description>99.9% Flash!</description>
	<lastBuildDate>Tue, 01 Sep 2009 10:50:14 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Unicode Grabber by admin</title>
		<link>http://www.jevinkones.com/unicode-grabber/comment-page-1/#comment-44</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 01 Sep 2009 10:50:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.jevinkones.com/?p=48#comment-44</guid>
		<description>I do need to give credit where credit is due.  I couldn&#039;t remember the blog post at the time, but this was inspired by a blog post by Mr. Doob on April 23rd 2009 entitled &quot;Optimizing Asian Fonts for Multi-Language Flash Sites&quot;.  The perma-link has disappeared, but it&#039;s still available on his blog.

Originally, his PHP script is the tool that I used for grabbing the unicode characters - it was a lifesaver!  But I needed my tool to evolve and so I rewrote that functionality in one line of ActionScript.

var unicodeHexID:String = new String(_input.charCodeAt(i).toString(16).toUpperCase());

This will only give you the character code, so you have to add to the string as necessary:

while(unicodeHexID.length&lt;4) unicodeHexID=&quot;0&quot;+unicodeHexID;
while(unicodeHexID.length&lt;3) unicodeHexID=&quot;00&quot;+unicodeHexID;
unicodeHexID = &quot;U+&quot; + unicodeHexID;

The first line will add a zero (0) to the string if the unicode hex ID&#039;s length is only 3 characters.  The second line will add two zeros (00) if the ID&#039;s length is only 2 characters.  Flex SDK won&#039;t understand a unicode ID that is only 2 or 3 spots long.  And on top of that, the last and final line adds a &quot;U+&quot; to the front of the string.  This is also necessary for the Flex SDK to understand that the item in the array is indeed a unicode hex ID.  Yay.

Keep in mind that this is rather sloppy and, well, there are probably more elegant ways to do it.  This is just a developer&#039;s tool to embed fonts.  &quot;The cobbler&#039;s kids have no shoes...&quot;, etc.

Happy Coding!
jevin kones</description>
		<content:encoded><![CDATA[<p>I do need to give credit where credit is due.  I couldn&#8217;t remember the blog post at the time, but this was inspired by a blog post by Mr. Doob on April 23rd 2009 entitled &#8220;Optimizing Asian Fonts for Multi-Language Flash Sites&#8221;.  The perma-link has disappeared, but it&#8217;s still available on his blog.</p>
<p>Originally, his PHP script is the tool that I used for grabbing the unicode characters &#8211; it was a lifesaver!  But I needed my tool to evolve and so I rewrote that functionality in one line of ActionScript.</p>
<p>var unicodeHexID:String = new String(_input.charCodeAt(i).toString(16).toUpperCase());</p>
<p>This will only give you the character code, so you have to add to the string as necessary:</p>
<p>while(unicodeHexID.length&lt;4) unicodeHexID=&#8221;0&#8243;+unicodeHexID;<br />
while(unicodeHexID.length&lt;3) unicodeHexID=&#8221;00&#8243;+unicodeHexID;<br />
unicodeHexID = &#8220;U+&#8221; + unicodeHexID;</p>
<p>The first line will add a zero (0) to the string if the unicode hex ID&#8217;s length is only 3 characters.  The second line will add two zeros (00) if the ID&#8217;s length is only 2 characters.  Flex SDK won&#8217;t understand a unicode ID that is only 2 or 3 spots long.  And on top of that, the last and final line adds a &#8220;U+&#8221; to the front of the string.  This is also necessary for the Flex SDK to understand that the item in the array is indeed a unicode hex ID.  Yay.</p>
<p>Keep in mind that this is rather sloppy and, well, there are probably more elegant ways to do it.  This is just a developer&#8217;s tool to embed fonts.  &#8220;The cobbler&#8217;s kids have no shoes&#8230;&#8221;, etc.</p>
<p>Happy Coding!<br />
jevin kones</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zinc Vs. AIR by Phillip Kerman</title>
		<link>http://www.jevinkones.com/zinc-vs-air/comment-page-1/#comment-7</link>
		<dc:creator>Phillip Kerman</dc:creator>
		<pubDate>Wed, 21 Jan 2009 18:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.jevinkones.com/?p=16#comment-7</guid>
		<description>Air is attractive to me because:
--a big company is behind it
--it has some nice built in stuff like drag&amp;drop and databases
--the install/upgrade is nearly seemless

However, ultimately, it&#039;s limited compared to Zinc.  There are just many more things you can&#039;t do with AIR.  

There&#039;s also screenweaver and SWFStudio that are viable comparisons to Zinc

Thanks,</description>
		<content:encoded><![CDATA[<p>Air is attractive to me because:<br />
&#8211;a big company is behind it<br />
&#8211;it has some nice built in stuff like drag&amp;drop and databases<br />
&#8211;the install/upgrade is nearly seemless</p>
<p>However, ultimately, it&#8217;s limited compared to Zinc.  There are just many more things you can&#8217;t do with AIR.  </p>
<p>There&#8217;s also screenweaver and SWFStudio that are viable comparisons to Zinc</p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ready to roll by colin</title>
		<link>http://www.jevinkones.com/ready-to-roll/comment-page-1/#comment-4</link>
		<dc:creator>colin</dc:creator>
		<pubDate>Mon, 19 Jan 2009 07:23:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.jevinkones.com/?p=7#comment-4</guid>
		<description>Now that you are using AIR more, I&#039;d like to hear if you share the viewpoint that you did about it vs. Zinc previously.  AIR does add some classes that I appreciate as a developer!</description>
		<content:encoded><![CDATA[<p>Now that you are using AIR more, I&#8217;d like to hear if you share the viewpoint that you did about it vs. Zinc previously.  AIR does add some classes that I appreciate as a developer!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ready to roll by Lee Brimelow</title>
		<link>http://www.jevinkones.com/ready-to-roll/comment-page-1/#comment-3</link>
		<dc:creator>Lee Brimelow</dc:creator>
		<pubDate>Sun, 18 Jan 2009 06:17:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.jevinkones.com/?p=7#comment-3</guid>
		<description>Great meeting you in Portland! Keep up the hard work.</description>
		<content:encoded><![CDATA[<p>Great meeting you in Portland! Keep up the hard work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The new and improved Jevin Kones™ blog is here! by colin</title>
		<link>http://www.jevinkones.com/the-new-and-improved-jevin-kones%e2%84%a2-blog-is-here/comment-page-1/#comment-2</link>
		<dc:creator>colin</dc:creator>
		<pubDate>Sun, 18 Jan 2009 03:49:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.jevinkones.com/?p=5#comment-2</guid>
		<description>It looks nice!  Cute photos.  My RSS has been updated.</description>
		<content:encoded><![CDATA[<p>It looks nice!  Cute photos.  My RSS has been updated.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
