<?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"
	>
<channel>
	<title>Comments on: Flex Chronicles #22: Embedding Fonts in a Button</title>
	<atom:link href="http://jessewarden.com/2006/07/flex-chronicles-22-embedding-fonts-in-a-button.html/feed" rel="self" type="application/rss+xml" />
	<link>http://jessewarden.com/2006/07/flex-chronicles-22-embedding-fonts-in-a-button.html</link>
	<description>A blog on software development, technology, games &#038; movies.</description>
	<pubDate>Sun, 12 Oct 2008 02:09:51 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: bobs</title>
		<link>http://jessewarden.com/2006/07/flex-chronicles-22-embedding-fonts-in-a-button.html#comment-126227</link>
		<dc:creator>bobs</dc:creator>
		<pubDate>Wed, 01 Oct 2008 07:21:25 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=1035#comment-126227</guid>
		<description>You are a god among men.

Thanks!</description>
		<content:encoded><![CDATA[<p>You are a god among men.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://jessewarden.com/2006/07/flex-chronicles-22-embedding-fonts-in-a-button.html#comment-81959</link>
		<dc:creator>James</dc:creator>
		<pubDate>Tue, 06 May 2008 13:14:03 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=1035#comment-81959</guid>
		<description>Nice Jessie!  Thanks for the tip!  I was just getting started on my hours long process of digging into this and luckily your post is going to save me the time!</description>
		<content:encoded><![CDATA[<p>Nice Jessie!  Thanks for the tip!  I was just getting started on my hours long process of digging into this and luckily your post is going to save me the time!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fenn</title>
		<link>http://jessewarden.com/2006/07/flex-chronicles-22-embedding-fonts-in-a-button.html#comment-62347</link>
		<dc:creator>Fenn</dc:creator>
		<pubDate>Tue, 04 Mar 2008 17:54:25 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=1035#comment-62347</guid>
		<description>Thanks a lot for this..... I have been trying for hours as well! Flex sometimes feels like your banging your heag against a very hard wall.</description>
		<content:encoded><![CDATA[<p>Thanks a lot for this&#8230;.. I have been trying for hours as well! Flex sometimes feels like your banging your heag against a very hard wall.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Evan</title>
		<link>http://jessewarden.com/2006/07/flex-chronicles-22-embedding-fonts-in-a-button.html#comment-59691</link>
		<dc:creator>Evan</dc:creator>
		<pubDate>Mon, 25 Feb 2008 19:10:59 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=1035#comment-59691</guid>
		<description>Yeah, me too.  You just saved my a BUNCH of time with this.  Makes sense once you think about it, but would be nice if it were called out a bit more in the docs.

Thanks!</description>
		<content:encoded><![CDATA[<p>Yeah, me too.  You just saved my a BUNCH of time with this.  Makes sense once you think about it, but would be nice if it were called out a bit more in the docs.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hiKrittiya</title>
		<link>http://jessewarden.com/2006/07/flex-chronicles-22-embedding-fonts-in-a-button.html#comment-58554</link>
		<dc:creator>hiKrittiya</dc:creator>
		<pubDate>Fri, 22 Feb 2008 20:05:11 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=1035#comment-58554</guid>
		<description>I'd like to share the code for embedding fonts for tabNavigator:

@font-face{
	/* Note that this font doesn't support bold */
	src: url("FG11004T.TTF");
  	fontFamily: myFuturaMediumEmbed;
  
    unicode-range:
	U+0041-U+005A, /* Upper-Case A-Z */
	U+0061-U+007A; /* Lower-Case a-z */
	
}

Button {
	
	embedFonts: true;
	fontWeight: normal;
	fontFamily: myFuturaMediumEmbed;
	
}


TabBar {
	
	firstButtonStyleName: "tabStyle1";
	tabStyleName: "tabStyle2";
	lastButtonStyleName: "tabStyle3";
	selectedTabTextStyleName: "mySelectedTabs";

	fontSize: 16px;
	
}
.tabStyle1 {

}
.tabStyle2 {

}
.tabStyle3 {

}</description>
		<content:encoded><![CDATA[<p>I&#8217;d like to share the code for embedding fonts for tabNavigator:</p>
<p>@font-face{<br />
	/* Note that this font doesn&#8217;t support bold */<br />
	src: url(&#8221;FG11004T.TTF&#8221;);<br />
  	fontFamily: myFuturaMediumEmbed;</p>
<p>    unicode-range:<br />
	U+0041-U+005A, /* Upper-Case A-Z */<br />
	U+0061-U+007A; /* Lower-Case a-z */</p>
<p>}</p>
<p>Button {</p>
<p>	embedFonts: true;<br />
	fontWeight: normal;<br />
	fontFamily: myFuturaMediumEmbed;</p>
<p>}</p>
<p>TabBar {</p>
<p>	firstButtonStyleName: &#8220;tabStyle1&#8243;;<br />
	tabStyleName: &#8220;tabStyle2&#8243;;<br />
	lastButtonStyleName: &#8220;tabStyle3&#8243;;<br />
	selectedTabTextStyleName: &#8220;mySelectedTabs&#8221;;</p>
<p>	fontSize: 16px;</p>
<p>}<br />
.tabStyle1 {</p>
<p>}<br />
.tabStyle2 {</p>
<p>}<br />
.tabStyle3 {</p>
<p>}</p>
]]></content:encoded>
	</item>
</channel>
</rss>
