<?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: Flex Font Embedding</title>
	<atom:link href="http://blog.benstucki.net/index.php?feed=rss2&#038;p=40" rel="self" type="application/rss+xml" />
	<link>http://blog.benstucki.net/?p=40</link>
	<description>Coding with Swiss Precision</description>
	<lastBuildDate>Tue, 02 Mar 2010 22:58:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Holland Risley</title>
		<link>http://blog.benstucki.net/?p=40&#038;cpage=1#comment-4440</link>
		<dc:creator>Holland Risley</dc:creator>
		<pubDate>Thu, 08 Nov 2007 12:35:54 +0000</pubDate>
		<guid isPermaLink="false">http://062880ab-5e29-40e2-ae10-ada121caa015#comment-4440</guid>
		<description>This example also includes the unicode range which embeds all common punctuation...

@font-face {
    src:url(&quot;../assets/MyriadWebPro.ttf&quot;);
    fontFamily: myFontFamily;
    flashType: true;
    unicodeRange:
           U 0041-U 005A, /* Upper-Case [A..Z] */
           U 0061-U 007A, /* Lower-Case a-z */
           U 0030-U 0039, /* Numbers [0..9] */
           U 0020-U 002F, /* Punctuation */
           U 003A-U 0040, /* Punctuation */
           U 005B-U 0060, /* Punctuation */
           U 007B-U 007E; /* Punctuation */
}

Holland Risley</description>
		<content:encoded><![CDATA[<p>This example also includes the unicode range which embeds all common punctuation&#8230;</p>
<p>@font-face {<br />
    src:url(&#8220;../assets/MyriadWebPro.ttf&#8221;);<br />
    fontFamily: myFontFamily;<br />
    flashType: true;<br />
    unicodeRange:<br />
           U 0041-U 005A, /* Upper-Case [A..Z] */<br />
           U 0061-U 007A, /* Lower-Case a-z */<br />
           U 0030-U 0039, /* Numbers [0..9] */<br />
           U 0020-U 002F, /* Punctuation */<br />
           U 003A-U 0040, /* Punctuation */<br />
           U 005B-U 0060, /* Punctuation */<br />
           U 007B-U 007E; /* Punctuation */<br />
}</p>
<p>Holland Risley</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Chiverton</title>
		<link>http://blog.benstucki.net/?p=40&#038;cpage=1#comment-662</link>
		<dc:creator>Tom Chiverton</dc:creator>
		<pubDate>Wed, 18 Jul 2007 08:52:02 +0000</pubDate>
		<guid isPermaLink="false">http://062880ab-5e29-40e2-ae10-ada121caa015#comment-662</guid>
		<description>Excellent post, and the comments about unicodeRange are useful too - saves 165K (with a normal and a bold fold).</description>
		<content:encoded><![CDATA[<p>Excellent post, and the comments about unicodeRange are useful too &#8211; saves 165K (with a normal and a bold fold).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://blog.benstucki.net/?p=40&#038;cpage=1#comment-635</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Wed, 18 Jul 2007 04:44:39 +0000</pubDate>
		<guid isPermaLink="false">http://062880ab-5e29-40e2-ae10-ada121caa015#comment-635</guid>
		<description>Alex - Yes, definitely worth mentioning.

Richard &amp; Andrew - You can load font character sets from a swf file if you need to, especially if the font type is not recognized by the flex compiler. Otherwise, you can still define character ranges in CSS.

&lt;code&gt;@font-face {
&#160;&#160;&#160;&#160;src:url(&quot;../assets/MyriadWebPro.ttf&quot;);
&#160;&#160;&#160;&#160;fontFamily: myFontFamily;
&#160;&#160;&#160;&#160;flashType: true;
&#160;&#160;&#160;&#160;unicodeRange:
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;U 0041-U 005A, /* Upper-Case [A..Z] */
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;U 0061-U 007A, /* Lower-Case a-z */
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;U 0030-U 0039, /* Numbers [0..9] */
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;U 002E-U 002E; /* Period [.] */
}&lt;/code&gt;

Check out the &lt;a href=&quot;http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Book_Parts&amp;file=performance_118_22.html#227950&quot; rel=&quot;nofollow&quot;&gt;live docs&lt;/a&gt; for details.</description>
		<content:encoded><![CDATA[<p>Alex &#8211; Yes, definitely worth mentioning.</p>
<p>Richard &#038; Andrew &#8211; You can load font character sets from a swf file if you need to, especially if the font type is not recognized by the flex compiler. Otherwise, you can still define character ranges in CSS.</p>
<p><code>@font-face {<br />
&nbsp;&nbsp;&nbsp;&nbsp;src:url("../assets/MyriadWebPro.ttf");<br />
&nbsp;&nbsp;&nbsp;&nbsp;fontFamily: myFontFamily;<br />
&nbsp;&nbsp;&nbsp;&nbsp;flashType: true;<br />
&nbsp;&nbsp;&nbsp;&nbsp;unicodeRange:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;U 0041-U 005A, /* Upper-Case [A..Z] */<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;U 0061-U 007A, /* Lower-Case a-z */<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;U 0030-U 0039, /* Numbers [0..9] */<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;U 002E-U 002E; /* Period [.] */<br />
}</code></p>
<p>Check out the <a href="http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Book_Parts&#038;file=performance_118_22.html#227950" rel="nofollow">live docs</a> for details.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
