<?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: AS3 ToolTip Class</title>
	<atom:link href="http://www.fiftyonereasons.com/2009/09/as3-tooltip-class/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fiftyonereasons.com/2009/09/as3-tooltip-class/</link>
	<description>Interactive Media Development + Exploration</description>
	<lastBuildDate>Thu, 26 Jan 2012 12:10:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: Jovica Aleksic</title>
		<link>http://www.fiftyonereasons.com/2009/09/as3-tooltip-class/comment-page-1/#comment-734</link>
		<dc:creator>Jovica Aleksic</dc:creator>
		<pubDate>Mon, 04 Jul 2011 14:24:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.fiftyonereasons.com/?p=175#comment-734</guid>
		<description>Thanks a bunch for this great class. It&#039;s the best one I&#039;ve found for minimalist, application-style tooltips. The web is spammed with over-the-top solutions.. :)</description>
		<content:encoded><![CDATA[<p>Thanks a bunch for this great class. It&#8217;s the best one I&#8217;ve found for minimalist, application-style tooltips. The web is spammed with over-the-top solutions.. <img src='http://www.fiftyonereasons.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wayne Helman</title>
		<link>http://www.fiftyonereasons.com/2009/09/as3-tooltip-class/comment-page-1/#comment-732</link>
		<dc:creator>Wayne Helman</dc:creator>
		<pubDate>Thu, 28 Apr 2011 02:37:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.fiftyonereasons.com/?p=175#comment-732</guid>
		<description>Sonia, you&#039;ll need to add the font to your library. Then you can reference an instance of that font in your code. See here for a good walkthrough: http://tournasdimitrios1.wordpress.com/2010/09/11/using-embedded-fonts-with-the-flash-cs3-button-control/</description>
		<content:encoded><![CDATA[<p>Sonia, you&#8217;ll need to add the font to your library. Then you can reference an instance of that font in your code. See here for a good walkthrough: <a href="http://tournasdimitrios1.wordpress.com/2010/09/11/using-embedded-fonts-with-the-flash-cs3-button-control/" rel="nofollow">http://tournasdimitrios1.wordpress.com/2010/09/11/using-embedded-fonts-with-the-flash-cs3-button-control/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sonia McMAHON</title>
		<link>http://www.fiftyonereasons.com/2009/09/as3-tooltip-class/comment-page-1/#comment-731</link>
		<dc:creator>Sonia McMAHON</dc:creator>
		<pubDate>Wed, 27 Apr 2011 20:16:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.fiftyonereasons.com/?p=175#comment-731</guid>
		<description>This is what I have so far in order to be able to use an embedded font...
I have added these lines to the original tooltip.as
private function initTextField():void
		{
			_tip = new TextField();			
			
			var myformat:TextFormat = new TextFormat();
			myformat.font = &quot;Akkurat&quot;;
			_tip.embedFonts = true;
			_tip.setTextFormat(myformat);

			_tip.selectable = false;
			_tip.mouseEnabled = false;
			//_tip.wordWrap = true;
			//_tip.multiline = true;			
			_tip.autoSize = TextFieldAutoSize.LEFT;
			_tip.border = false;
			//_tip.borderColor = 0xFFFFFF;
			_tip.background = true;
			_tip.backgroundColor = 0x999999;
			_tip.textColor = 0xFFFFFF ;

			
			addChild(_tip);

		}

Not working , I get the following error codes:
1046: Type was not found or was not a compile-time constant: TextFormat.
1180: Call to a possibly undefined method TextFormat.
Anyone?
Some help....
Thanks.</description>
		<content:encoded><![CDATA[<p>This is what I have so far in order to be able to use an embedded font&#8230;<br />
I have added these lines to the original tooltip.as<br />
private function initTextField():void<br />
		{<br />
			_tip = new TextField();			</p>
<p>			var myformat:TextFormat = new TextFormat();<br />
			myformat.font = &#8220;Akkurat&#8221;;<br />
			_tip.embedFonts = true;<br />
			_tip.setTextFormat(myformat);</p>
<p>			_tip.selectable = false;<br />
			_tip.mouseEnabled = false;<br />
			//_tip.wordWrap = true;<br />
			//_tip.multiline = true;<br />
			_tip.autoSize = TextFieldAutoSize.LEFT;<br />
			_tip.border = false;<br />
			//_tip.borderColor = 0xFFFFFF;<br />
			_tip.background = true;<br />
			_tip.backgroundColor = 0&#215;999999;<br />
			_tip.textColor = 0xFFFFFF ;</p>
<p>			addChild(_tip);</p>
<p>		}</p>
<p>Not working , I get the following error codes:<br />
1046: Type was not found or was not a compile-time constant: TextFormat.<br />
1180: Call to a possibly undefined method TextFormat.<br />
Anyone?<br />
Some help&#8230;.<br />
Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sonia McMAHON</title>
		<link>http://www.fiftyonereasons.com/2009/09/as3-tooltip-class/comment-page-1/#comment-730</link>
		<dc:creator>Sonia McMAHON</dc:creator>
		<pubDate>Tue, 26 Apr 2011 20:56:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.fiftyonereasons.com/?p=175#comment-730</guid>
		<description>Hi.
Very nice, easy to use tooltip...but for the love of God, have mercy and tell regular Flash as3 non-Flex people what they would have to do to use another font...?
Pleeeaaaase. I am new to as3.
Can u just specify a font in tooltip.as???
Help.</description>
		<content:encoded><![CDATA[<p>Hi.<br />
Very nice, easy to use tooltip&#8230;but for the love of God, have mercy and tell regular Flash as3 non-Flex people what they would have to do to use another font&#8230;?<br />
Pleeeaaaase. I am new to as3.<br />
Can u just specify a font in tooltip.as???<br />
Help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wayne Helman</title>
		<link>http://www.fiftyonereasons.com/2009/09/as3-tooltip-class/comment-page-1/#comment-438</link>
		<dc:creator>Wayne Helman</dc:creator>
		<pubDate>Sat, 29 Jan 2011 13:30:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.fiftyonereasons.com/?p=175#comment-438</guid>
		<description>Miguel, can you post the complete stack trace and which version of Flash are you using? Also, double check your compilation settings and make sure that AS3 and &gt;= FP9 is selected.</description>
		<content:encoded><![CDATA[<p>Miguel, can you post the complete stack trace and which version of Flash are you using? Also, double check your compilation settings and make sure that AS3 and >= FP9 is selected.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Miguel</title>
		<link>http://www.fiftyonereasons.com/2009/09/as3-tooltip-class/comment-page-1/#comment-437</link>
		<dc:creator>Miguel</dc:creator>
		<pubDate>Sat, 29 Jan 2011 00:53:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.fiftyonereasons.com/?p=175#comment-437</guid>
		<description>Great Job, just for me don&#039;t works, I get error #1009  in ToolTip/followMouse()</description>
		<content:encoded><![CDATA[<p>Great Job, just for me don&#8217;t works, I get error #1009  in ToolTip/followMouse()</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Social</title>
		<link>http://www.fiftyonereasons.com/2009/09/as3-tooltip-class/comment-page-1/#comment-419</link>
		<dc:creator>Social</dc:creator>
		<pubDate>Fri, 17 Dec 2010 14:16:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.fiftyonereasons.com/?p=175#comment-419</guid>
		<description>Thank you for this nice Tooltip, it&#039;s a very good base to add more stuff to, thanks!</description>
		<content:encoded><![CDATA[<p>Thank you for this nice Tooltip, it&#8217;s a very good base to add more stuff to, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wayne Helman</title>
		<link>http://www.fiftyonereasons.com/2009/09/as3-tooltip-class/comment-page-1/#comment-108</link>
		<dc:creator>Wayne Helman</dc:creator>
		<pubDate>Wed, 16 Jun 2010 16:23:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.fiftyonereasons.com/?p=175#comment-108</guid>
		<description>We here use FlashDevelop which allows us to pull in the Flex SDK into our Flash projects. So when we compile, we actually compile with the Flex SDK as apposed to the Flash compiler. With, Flex, you can use the Embed directive like:

[Embed(source=&#039;arial.ttf&#039;, fontName = &#039;Arial&#039;,  mimeType = &#039;application/x-font&#039;, unicodeRange=&quot;U+0041-U+005A&quot;)]
private var Arial:Class;

Hope that helps!</description>
		<content:encoded><![CDATA[<p>We here use FlashDevelop which allows us to pull in the Flex SDK into our Flash projects. So when we compile, we actually compile with the Flex SDK as apposed to the Flash compiler. With, Flex, you can use the Embed directive like:</p>
<p>[Embed(source='arial.ttf', fontName = 'Arial',  mimeType = 'application/x-font', unicodeRange="U+0041-U+005A")]<br />
private var Arial:Class;</p>
<p>Hope that helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://www.fiftyonereasons.com/2009/09/as3-tooltip-class/comment-page-1/#comment-107</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Wed, 16 Jun 2010 15:07:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.fiftyonereasons.com/?p=175#comment-107</guid>
		<description>Any chance od seeing a sample with embedded fonts? I&#039;m having a bit of trouble implementing this....</description>
		<content:encoded><![CDATA[<p>Any chance od seeing a sample with embedded fonts? I&#8217;m having a bit of trouble implementing this&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil Chertok</title>
		<link>http://www.fiftyonereasons.com/2009/09/as3-tooltip-class/comment-page-1/#comment-73</link>
		<dc:creator>Phil Chertok</dc:creator>
		<pubDate>Wed, 14 Oct 2009 17:31:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.fiftyonereasons.com/?p=175#comment-73</guid>
		<description>Thanks Sebastian.  We&#039;ve got it working here with embedded fonts, just thought we&#039;d throw it out there for people in the most simple way possible.</description>
		<content:encoded><![CDATA[<p>Thanks Sebastian.  We&#8217;ve got it working here with embedded fonts, just thought we&#8217;d throw it out there for people in the most simple way possible.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

