<?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: Using embedded fonts in Flash CS3 using ActionScript 3</title>
	<atom:link href="http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/</link>
	<description>Flash, ActionScript, SEO and everything in between</description>
	<lastBuildDate>Sat, 04 Feb 2012 08:16:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Jasper Vandegaer</title>
		<link>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/comment-page-1/#comment-7066</link>
		<dc:creator>Jasper Vandegaer</dc:creator>
		<pubDate>Sat, 28 May 2011 20:52:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/#comment-7066</guid>
		<description>Thx. Really good and easy to understand! It helped me a lot :) keep on posting ;)</description>
		<content:encoded><![CDATA[<p>Thx. Really good and easy to understand! It helped me a lot <img src='http://www.zedia.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  keep on posting <img src='http://www.zedia.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chase</title>
		<link>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/comment-page-1/#comment-6842</link>
		<dc:creator>Chase</dc:creator>
		<pubDate>Mon, 02 May 2011 21:49:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/#comment-6842</guid>
		<description>This is awesome. Thank you!</description>
		<content:encoded><![CDATA[<p>This is awesome. Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nadim</title>
		<link>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/comment-page-1/#comment-6503</link>
		<dc:creator>nadim</dc:creator>
		<pubDate>Tue, 29 Mar 2011 14:33:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/#comment-6503</guid>
		<description>Great. Thx Ben &amp; Søren Larsen Pedersen - keeping the var and class name different workerd for me. Thx ;-)</description>
		<content:encoded><![CDATA[<p>Great. Thx Ben &amp; Søren Larsen Pedersen &#8211; keeping the var and class name different workerd for me. Thx <img src='http://www.zedia.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Søren Larsen Pedersen</title>
		<link>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/comment-page-1/#comment-5141</link>
		<dc:creator>Søren Larsen Pedersen</dc:creator>
		<pubDate>Thu, 20 May 2010 20:56:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/#comment-5141</guid>
		<description>@John &amp; paulo:

I just did something like this:

public var headerText:TextField = new TextField();

private var fTimes:Font = new fontTimes();

with (headerFormat)
{
	color = 0x000000;
	font = fGill.fontName;
	size = 16;
	bold = false;
}

with (headerText)
{
	defaultTextFormat = headerFormat;
	x = 0;
	y = 0;
	embedFonts = true;
	antiAliasType = AntiAliasType.ADVANCED;
	border = false;
	width = 100;
	height = 20;
	selectable = false;
	wordWrap = true;
	text = &quot;Default&quot;;
}

I hope it helps.

P.s. Remember what Ben said:
&quot;... having the var and class named the same caused an error&quot;</description>
		<content:encoded><![CDATA[<p>@John &amp; paulo:</p>
<p>I just did something like this:</p>
<p>public var headerText:TextField = new TextField();</p>
<p>private var fTimes:Font = new fontTimes();</p>
<p>with (headerFormat)<br />
{<br />
	color = 0&#215;000000;<br />
	font = fGill.fontName;<br />
	size = 16;<br />
	bold = false;<br />
}</p>
<p>with (headerText)<br />
{<br />
	defaultTextFormat = headerFormat;<br />
	x = 0;<br />
	y = 0;<br />
	embedFonts = true;<br />
	antiAliasType = AntiAliasType.ADVANCED;<br />
	border = false;<br />
	width = 100;<br />
	height = 20;<br />
	selectable = false;<br />
	wordWrap = true;<br />
	text = &#8220;Default&#8221;;<br />
}</p>
<p>I hope it helps.</p>
<p>P.s. Remember what Ben said:<br />
&#8220;&#8230; having the var and class named the same caused an error&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Poznámky &#171; web-goodies</title>
		<link>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/comment-page-1/#comment-4935</link>
		<dc:creator>Poznámky &#171; web-goodies</dc:creator>
		<pubDate>Wed, 31 Mar 2010 09:03:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/#comment-4935</guid>
		<description>[...] http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/" rel="nofollow">http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephen</title>
		<link>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/comment-page-1/#comment-4929</link>
		<dc:creator>Stephen</dc:creator>
		<pubDate>Mon, 29 Mar 2010 18:34:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/#comment-4929</guid>
		<description>Thanks for posting I didnt know you had to give it a linkage name. Saved me alot of hassle.

Cheers</description>
		<content:encoded><![CDATA[<p>Thanks for posting I didnt know you had to give it a linkage name. Saved me alot of hassle.</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: paulo</title>
		<link>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/comment-page-1/#comment-4002</link>
		<dc:creator>paulo</dc:creator>
		<pubDate>Wed, 23 Sep 2009 16:55:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/#comment-4002</guid>
		<description>had a problem with formating text and this allowed me loads. 
Cheers</description>
		<content:encoded><![CDATA[<p>had a problem with formating text and this allowed me loads.<br />
Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/comment-page-1/#comment-3574</link>
		<dc:creator>John</dc:creator>
		<pubDate>Tue, 26 May 2009 12:34:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/#comment-3574</guid>
		<description>How to refer to an embedded font in an external class imported in the main flash movie?

externalClass.as
==========
var helve:Font = new Helve();

1180: Call to a possibly undefined method Helve</description>
		<content:encoded><![CDATA[<p>How to refer to an embedded font in an external class imported in the main flash movie?</p>
<p>externalClass.as<br />
==========<br />
var helve:Font = new Helve();</p>
<p>1180: Call to a possibly undefined method Helve</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Atul</title>
		<link>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/comment-page-1/#comment-3273</link>
		<dc:creator>Atul</dc:creator>
		<pubDate>Tue, 20 Jan 2009 14:33:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/#comment-3273</guid>
		<description>is it possible to apply the embedded font from css file?</description>
		<content:encoded><![CDATA[<p>is it possible to apply the embedded font from css file?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sebastian</title>
		<link>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/comment-page-1/#comment-3217</link>
		<dc:creator>Sebastian</dc:creator>
		<pubDate>Wed, 14 Jan 2009 12:38:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/#comment-3217</guid>
		<description>Hey there ! do you have a workaround for special characters? Registering a font with this embed solution is simple but accesing special characters and glyphs ... UNICODE based elements like latin special characters is difficult. Do you know a way to do it, becuase there&#039;s no point to use embed fonts if he actually gives you just a small amount of characters . 
Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hey there ! do you have a workaround for special characters? Registering a font with this embed solution is simple but accesing special characters and glyphs &#8230; UNICODE based elements like latin special characters is difficult. Do you know a way to do it, becuase there&#8217;s no point to use embed fonts if he actually gives you just a small amount of characters .<br />
Thanks in advance.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

