<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.3" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Using embedded fonts in Flash CS3 using ActionScript 3</title>
	<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>
	<pubDate>Mon, 01 Dec 2008 19:12:29 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.3</generator>

	<item>
		<title>By: mockanator</title>
		<link>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/#comment-2516</link>
		<dc:creator>mockanator</dc:creator>
		<pubDate>Fri, 07 Nov 2008 23:34:22 +0000</pubDate>
		<guid>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/#comment-2516</guid>
		<description>I keep getting 1119: Access of possibly undefined property FATTIP through a reference with static type flash.text:Font. 

when trying...

	var poloroidOviTextFormat:TextFormat = new TextFormat();
	var fatTipFont:Font = new FATTIP();
	poloroidOviTextFormat.size = 24; 
	poloroidOviTextFormat.color = 0x000000; 
	//debug ///////////////////////////////////////////////////////////////
	if (debug) {
		debugText.appendText(String(fatTipFont) +"font \n");
		}
	//End debug ///////////////////////////////////////////////////////////////			
	poloroidOviTextFormat.font = fatTipFont.FATTIP;
	poloroidOviText.setTextFormat(poloroidOviTextFormat);</description>
		<content:encoded><![CDATA[<p>I keep getting 1119: Access of possibly undefined property FATTIP through a reference with static type flash.text:Font. </p>
<p>when trying&#8230;</p>
<p>	var poloroidOviTextFormat:TextFormat = new TextFormat();<br />
	var fatTipFont:Font = new FATTIP();<br />
	poloroidOviTextFormat.size = 24;<br />
	poloroidOviTextFormat.color = 0&#215;000000;<br />
	//debug ///////////////////////////////////////////////////////////////<br />
	if (debug) {<br />
		debugText.appendText(String(fatTipFont) +&#8221;font \n&#8221;);<br />
		}<br />
	//End debug ///////////////////////////////////////////////////////////////<br />
	poloroidOviTextFormat.font = fatTipFont.FATTIP;<br />
	poloroidOviText.setTextFormat(poloroidOviTextFormat);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/#comment-2386</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Wed, 13 Aug 2008 20:49:41 +0000</pubDate>
		<guid>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/#comment-2386</guid>
		<description>Wish I found this 2 hours ago - thanks though I think this should read as having the var and class named the same caused an error

var _helve:Font = new helve();
var buttonLabel = new TextField();
addChild(buttonLabel)
var txtFormat = new TextFormat();
txtFormat.font = _helve.fontName;
txtFormat.color = 0x000000;
txtFormat.size = 14;
buttonLabel.embedFonts = true;
buttonLabel.text = "place label text here";
buttonLabel.setTextFormat (txtFormat);</description>
		<content:encoded><![CDATA[<p>Wish I found this 2 hours ago - thanks though I think this should read as having the var and class named the same caused an error</p>
<p>var _helve:Font = new helve();<br />
var buttonLabel = new TextField();<br />
addChild(buttonLabel)<br />
var txtFormat = new TextFormat();<br />
txtFormat.font = _helve.fontName;<br />
txtFormat.color = 0&#215;000000;<br />
txtFormat.size = 14;<br />
buttonLabel.embedFonts = true;<br />
buttonLabel.text = &#8220;place label text here&#8221;;<br />
buttonLabel.setTextFormat (txtFormat);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BSN</title>
		<link>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/#comment-2349</link>
		<dc:creator>BSN</dc:creator>
		<pubDate>Fri, 25 Jul 2008 02:19:36 +0000</pubDate>
		<guid>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/#comment-2349</guid>
		<description>The class is *not* in the first line. An instance of the Helve Class is created on the first line.

The class is generated automatically by Flash when the .swf is compiled. The author wrote: "In the pop window, click export for ActionScript and give it a class name." When you close the linkage dialog, Flash will tell you that it can't find the specified class, but it will kindly create it for you on compilation. The generated class is then embedded into the .swf, but unless you decompile it, you'll never see it...</description>
		<content:encoded><![CDATA[<p>The class is *not* in the first line. An instance of the Helve Class is created on the first line.</p>
<p>The class is generated automatically by Flash when the .swf is compiled. The author wrote: &#8220;In the pop window, click export for ActionScript and give it a class name.&#8221; When you close the linkage dialog, Flash will tell you that it can&#8217;t find the specified class, but it will kindly create it for you on compilation. The generated class is then embedded into the .swf, but unless you decompile it, you&#8217;ll never see it&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Iangregory</title>
		<link>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/#comment-2309</link>
		<dc:creator>Iangregory</dc:creator>
		<pubDate>Wed, 09 Jul 2008 01:36:32 +0000</pubDate>
		<guid>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/#comment-2309</guid>
		<description>Thanks. Helps a lot.
Roy, his class is in the first line.</description>
		<content:encoded><![CDATA[<p>Thanks. Helps a lot.<br />
Roy, his class is in the first line.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John David Eriksen</title>
		<link>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/#comment-1753</link>
		<dc:creator>John David Eriksen</dc:creator>
		<pubDate>Fri, 25 Apr 2008 18:11:23 +0000</pubDate>
		<guid>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/#comment-1753</guid>
		<description>Thanks, this was a lifesaver :]</description>
		<content:encoded><![CDATA[<p>Thanks, this was a lifesaver :]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Drew LeSueur</title>
		<link>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/#comment-1692</link>
		<dc:creator>Drew LeSueur</dc:creator>
		<pubDate>Sat, 19 Apr 2008 19:06:55 +0000</pubDate>
		<guid>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/#comment-1692</guid>
		<description>Thank you!</description>
		<content:encoded><![CDATA[<p>Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: roy</title>
		<link>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/#comment-1565</link>
		<dc:creator>roy</dc:creator>
		<pubDate>Fri, 28 Mar 2008 02:54:56 +0000</pubDate>
		<guid>http://www.zedia.net/2007/using-embedded-fonts-in-flash-cs3-using-actionscript-3/#comment-1565</guid>
		<description>where your class?</description>
		<content:encoded><![CDATA[<p>where your class?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
