<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ria-coder.com &#187; fonts</title>
	<atom:link href="http://ria-coder.com/blog/tag/fonts/feed" rel="self" type="application/rss+xml" />
	<link>http://ria-coder.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 21 Apr 2010 19:35:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Best Development Fonts</title>
		<link>http://ria-coder.com/blog/best-development-fonts</link>
		<comments>http://ria-coder.com/blog/best-development-fonts#comments</comments>
		<pubDate>Thu, 13 Nov 2008 13:39:00 +0000</pubDate>
		<dc:creator>Danny Kopping</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[fonts]]></category>

		<guid isPermaLink="false">http://ria-coder.com/blog/?p=56</guid>
		<description><![CDATA[I&#8217;m a very visual programmer. I like my applications to look decent before i start coding the underlying logic. In that same vein, i also like the font i&#8217;m developing with to look good. While trolling the net today, i found this page: http://www.codeproject.com/KB/work/FontSurvey.aspx. Check it out. There are some very nice fonts there. My]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a very visual programmer. I like my applications to look decent before i start coding the underlying logic. In that same vein, i also like the font i&#8217;m developing with to look good.</p>
<p>While trolling the net today, i found this page: <a href="http://www.codeproject.com/KB/work/FontSurvey.aspx" target="_blank">http://www.codeproject.com/KB/work/FontSurvey.aspx</a>. Check it out. There are some very nice fonts there.</p>
<p>My two top fonts for development are:</p>
<p>Consolas and Monaco (the TextMate font &#8211; this is available for Windows too).</p>
]]></content:encoded>
			<wfw:commentRss>http://ria-coder.com/blog/best-development-fonts/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash-style Font Embedding</title>
		<link>http://ria-coder.com/blog/flash-style-font-embedding</link>
		<comments>http://ria-coder.com/blog/flash-style-font-embedding#comments</comments>
		<pubDate>Sat, 08 Nov 2008 11:53:10 +0000</pubDate>
		<dc:creator>Danny Kopping</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[embedding]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[unicode]]></category>

		<guid isPermaLink="false">http://ria-coder.com/blog/?p=49</guid>
		<description><![CDATA[One of the things i love about Flash (and man, there are so few things) is that you can embed a range of Unicode characters of a specific font into your application. A range is basically a set of characters that exists in your desired font (ie Latin characters). For more info on Unicode characters]]></description>
			<content:encoded><![CDATA[<p>One of the things i love about Flash (and man, there are so few things) is that you can embed a range of Unicode characters of a specific font into your application. A range is basically a set of characters that exists in your desired font (ie Latin characters). For more info on Unicode characters and ranges, go <a title="Unicode Ranges" href="http://www.alanwood.net/unicode/fontsbyrange.html" target="_blank">here</a>.</p>
<p>So, now, how does one embed a font into Flex?</p>
<p>Well, it&#8217;s actually quite simple. Inside of the &lt;Style&gt; tag or in an external .css file, you can embed a font using the following syntax:</p>
<pre>@font-face
{
      src:url("../assets/MyriadWebPro.ttf"); /* A .ttf inside your project */
      fontFamily: myFontFamily;
}<a>
</a></pre>
<p><a>or using an installed font:<br />
</a></p>
<pre>@font-face
{
    fontFamily: "Lucida Sans";
    src: local("Lucida Sans");
}</pre>
<p>The following syntax illustrates how to embed only certain unicode ranges of your font:</p>
<pre>@font-face
{
    src:url("../assets/MyriadWebPro.ttf");
    fontFamily: myFontFamily;
    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+002E-U+002E; /* Period [.] */
}</pre>
<p>Now how cool is that?! Flex rocks!</p>
]]></content:encoded>
			<wfw:commentRss>http://ria-coder.com/blog/flash-style-font-embedding/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

