<?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: Dynamically loading fonts with FontLoader and applying styles with CSS stylesheet in Actionscript 3.0</title>
	<atom:link href="http://www.thetechlabs.com/tutorials/flash/dynamically-loading-fonts-with-fontloader-and-applying-styles-with-css-stylesheet-in-as3/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thetechlabs.com/tech-tutorials/flash/dynamically-loading-fonts-with-fontloader-and-applying-styles-with-css-stylesheet-in-as3/</link>
	<description>The Tech Labs</description>
	<lastBuildDate>Fri, 10 Feb 2012 03:18:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: Christian Noel Mascarinas</title>
		<link>http://www.thetechlabs.com/tech-tutorials/flash/dynamically-loading-fonts-with-fontloader-and-applying-styles-with-css-stylesheet-in-as3/comment-page-1/#comment-70953</link>
		<dc:creator>Christian Noel Mascarinas</dc:creator>
		<pubDate>Wed, 16 Mar 2011 11:44:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.thetechlabs.com/?p=166#comment-70953</guid>
		<description>Hi,

Great tutorial! I was just wondering if this still works with Flash Player 10.1 or 10.2
I&#039;ve tried it and only the Japanese texts show up on screen.

Thanks.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Great tutorial! I was just wondering if this still works with Flash Player 10.1 or 10.2<br />
I&#8217;ve tried it and only the Japanese texts show up on screen.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Per</title>
		<link>http://www.thetechlabs.com/tech-tutorials/flash/dynamically-loading-fonts-with-fontloader-and-applying-styles-with-css-stylesheet-in-as3/comment-page-1/#comment-64517</link>
		<dc:creator>Per</dc:creator>
		<pubDate>Tue, 01 Feb 2011 22:01:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.thetechlabs.com/?p=166#comment-64517</guid>
		<description>Very impressive, I like your byte magic ;-)</description>
		<content:encoded><![CDATA[<p>Very impressive, I like your byte magic <img src='http://www.thetechlabs.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sanjeev Kumar</title>
		<link>http://www.thetechlabs.com/tech-tutorials/flash/dynamically-loading-fonts-with-fontloader-and-applying-styles-with-css-stylesheet-in-as3/comment-page-1/#comment-24198</link>
		<dc:creator>Sanjeev Kumar</dc:creator>
		<pubDate>Tue, 15 Jun 2010 10:05:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.thetechlabs.com/?p=166#comment-24198</guid>
		<description>Very smart ByteArray manipulation for assigning class name to embedded fonts. Really great!
Keep it up.

If you have any idea about iteration through ApplicationDomain, please share it.

Thank you.</description>
		<content:encoded><![CDATA[<p>Very smart ByteArray manipulation for assigning class name to embedded fonts. Really great!<br />
Keep it up.</p>
<p>If you have any idea about iteration through ApplicationDomain, please share it.</p>
<p>Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://www.thetechlabs.com/tech-tutorials/flash/dynamically-loading-fonts-with-fontloader-and-applying-styles-with-css-stylesheet-in-as3/comment-page-1/#comment-20647</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Thu, 06 May 2010 16:37:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.thetechlabs.com/?p=166#comment-20647</guid>
		<description>Hi! EmbedFonts is driving me nuts. When embedFonts is set to true the font disappears, however when it&#039;s not set it&#039;s visible...</description>
		<content:encoded><![CDATA[<p>Hi! EmbedFonts is driving me nuts. When embedFonts is set to true the font disappears, however when it&#8217;s not set it&#8217;s visible&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rafael Nünlist</title>
		<link>http://www.thetechlabs.com/tech-tutorials/flash/dynamically-loading-fonts-with-fontloader-and-applying-styles-with-css-stylesheet-in-as3/comment-page-1/#comment-5242</link>
		<dc:creator>Rafael Nünlist</dc:creator>
		<pubDate>Sun, 26 Apr 2009 14:36:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.thetechlabs.com/?p=166#comment-5242</guid>
		<description>@Sam: You can access the image by setting a id-attribute to the img tag. Like this:




And for the AS3 Code:

var ldr:Loader = textfield.getImageReference(&quot;image&quot;);
ldr.contentLoaderInfo.addEventListener(Event.COMPLETE, imageLoaded);

private function imageLoaded(e:Event):void
{
		e.target.removeEventListener(Event.COMPLETE, imageLoaded);
		Bitmap(e.target.content).smoothing = true;	
}

@bas: Could you upload a test FLA or post the code?</description>
		<content:encoded><![CDATA[<p>@Sam: You can access the image by setting a id-attribute to the img tag. Like this:</p>
<p>And for the AS3 Code:</p>
<p>var ldr:Loader = textfield.getImageReference(&#8220;image&#8221;);<br />
ldr.contentLoaderInfo.addEventListener(Event.COMPLETE, imageLoaded);</p>
<p>private function imageLoaded(e:Event):void<br />
{<br />
		e.target.removeEventListener(Event.COMPLETE, imageLoaded);<br />
		Bitmap(e.target.content).smoothing = true;<br />
}</p>
<p>@bas: Could you upload a test FLA or post the code?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Object Caching 444/450 objects using disk: basic

Served from: www.thetechlabs.com @ 2012-02-10 05:44:58 -->
