<?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: tabEnabled</title>
	<atom:link href="http://www.forestandthetrees.com/2006/06/14/tabenabled/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.forestandthetrees.com/2006/06/14/tabenabled/</link>
	<description>Data Visualization with Flex and Flash</description>
	<lastBuildDate>Mon, 28 Jun 2010 09:13:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Chad</title>
		<link>http://www.forestandthetrees.com/2006/06/14/tabenabled/comment-page-1/#comment-32650</link>
		<dc:creator>Chad</dc:creator>
		<pubDate>Thu, 06 Sep 2007 18:33:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.forestandthetrees.com/?p=71#comment-32650</guid>
		<description>More thanks! This has solved a problem bothering us for days.</description>
		<content:encoded><![CDATA[<p>More thanks! This has solved a problem bothering us for days.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim</title>
		<link>http://www.forestandthetrees.com/2006/06/14/tabenabled/comment-page-1/#comment-18818</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Sat, 05 May 2007 21:55:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.forestandthetrees.com/?p=71#comment-18818</guid>
		<description>Thanks guys -- this thread helped me greatly!</description>
		<content:encoded><![CDATA[<p>Thanks guys &#8212; this thread helped me greatly!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug</title>
		<link>http://www.forestandthetrees.com/2006/06/14/tabenabled/comment-page-1/#comment-13974</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Fri, 06 Apr 2007 13:39:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.forestandthetrees.com/?p=71#comment-13974</guid>
		<description>Thanks for the extra info Travis,

I actually think the best solution would be

//don&#039;t need to call the focusrect all the time
myButton._focusrect = false;
myButton.onRelease=function(){
//put the selection at the start of the function, in case the function is supposed to set focus elsewhere
Selection.setFocus(this);
do somethingâ€¦.

};</description>
		<content:encoded><![CDATA[<p>Thanks for the extra info Travis,</p>
<p>I actually think the best solution would be</p>
<p>//don&#8217;t need to call the focusrect all the time<br />
myButton._focusrect = false;<br />
myButton.onRelease=function(){<br />
//put the selection at the start of the function, in case the function is supposed to set focus elsewhere<br />
Selection.setFocus(this);<br />
do somethingâ€¦.</p>
<p>};</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: travis</title>
		<link>http://www.forestandthetrees.com/2006/06/14/tabenabled/comment-page-1/#comment-13973</link>
		<dc:creator>travis</dc:creator>
		<pubDate>Fri, 06 Apr 2007 13:35:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.forestandthetrees.com/?p=71#comment-13973</guid>
		<description>I agree with Doug that the initial solution didn&#039;t always work. BTW, to get rid of the yellow focus borders introduced by setFocus, use _focusrect = false

myButton.onRelease=function(){
do something....
this._focusrect = false;
Selection.setFocus(this);
};</description>
		<content:encoded><![CDATA[<p>I agree with Doug that the initial solution didn&#8217;t always work. BTW, to get rid of the yellow focus borders introduced by setFocus, use _focusrect = false</p>
<p>myButton.onRelease=function(){<br />
do something&#8230;.<br />
this._focusrect = false;<br />
Selection.setFocus(this);<br />
};</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: travis</title>
		<link>http://www.forestandthetrees.com/2006/06/14/tabenabled/comment-page-1/#comment-13972</link>
		<dc:creator>travis</dc:creator>
		<pubDate>Fri, 06 Apr 2007 13:08:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.forestandthetrees.com/?p=71#comment-13972</guid>
		<description>Thanks for posting this! I&#039;ve been searching for a solution to this for a while now and was beginning to think it was somehow just me. :)</description>
		<content:encoded><![CDATA[<p>Thanks for posting this! I&#8217;ve been searching for a solution to this for a while now and was beginning to think it was somehow just me. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug</title>
		<link>http://www.forestandthetrees.com/2006/06/14/tabenabled/comment-page-1/#comment-9021</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Fri, 16 Mar 2007 14:39:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.forestandthetrees.com/?p=71#comment-9021</guid>
		<description>This solution doesn&#039;t always work. Here&#039;s a better one: 

&lt;code&gt;
myButton.onRelease=function(){
	do something....
	Selection.setFocus(this);
};
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>This solution doesn&#8217;t always work. Here&#8217;s a better one: </p>
<p><code><br />
myButton.onRelease=function(){<br />
	do something....<br />
	Selection.setFocus(this);<br />
};<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Viktor</title>
		<link>http://www.forestandthetrees.com/2006/06/14/tabenabled/comment-page-1/#comment-402</link>
		<dc:creator>Viktor</dc:creator>
		<pubDate>Wed, 26 Jul 2006 18:37:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.forestandthetrees.com/?p=71#comment-402</guid>
		<description>Great solution! This &quot;bug&quot; had me puzzled for hours.. (I was certain it was probably a glitch in my script or some sort of timing problem).
After a bit of googling i found i&#039;m not the only one.

So far I found that this problem only occurs when you use the built in combobox.</description>
		<content:encoded><![CDATA[<p>Great solution! This &#8220;bug&#8221; had me puzzled for hours.. (I was certain it was probably a glitch in my script or some sort of timing problem).<br />
After a bit of googling i found i&#8217;m not the only one.</p>
<p>So far I found that this problem only occurs when you use the built in combobox.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Douglas McCarroll</title>
		<link>http://www.forestandthetrees.com/2006/06/14/tabenabled/comment-page-1/#comment-268</link>
		<dc:creator>Douglas McCarroll</dc:creator>
		<pubDate>Thu, 15 Jun 2006 13:49:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.forestandthetrees.com/?p=71#comment-268</guid>
		<description>Okay, now I see it. I must have been moving my mouse a bit.</description>
		<content:encoded><![CDATA[<p>Okay, now I see it. I must have been moving my mouse a bit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug</title>
		<link>http://www.forestandthetrees.com/2006/06/14/tabenabled/comment-page-1/#comment-265</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Thu, 15 Jun 2006 12:01:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.forestandthetrees.com/?p=71#comment-265</guid>
		<description>Flash Player version - right click swf &quot;About Flash Player {version}&quot;
That is strange it works for you. I&#039;ve tried on MIE, Firefox, Players 8 and 9 - and I still only get the initial click registering on the gray rect after choosing something in the combo. If you click the green rect after combo, then multiple gray rect clicks DO work.</description>
		<content:encoded><![CDATA[<p>Flash Player version &#8211; right click swf &#8220;About Flash Player {version}&#8221;<br />
That is strange it works for you. I&#8217;ve tried on MIE, Firefox, Players 8 and 9 &#8211; and I still only get the initial click registering on the gray rect after choosing something in the combo. If you click the green rect after combo, then multiple gray rect clicks DO work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Douglas McCarroll</title>
		<link>http://www.forestandthetrees.com/2006/06/14/tabenabled/comment-page-1/#comment-264</link>
		<dc:creator>Douglas McCarroll</dc:creator>
		<pubDate>Thu, 15 Jun 2006 01:14:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.forestandthetrees.com/?p=71#comment-264</guid>
		<description>Seems to work for me, Doug. Firefox 1.5.0.4. Not sure what version of Flash player. (How do I check this?) WinXP.</description>
		<content:encoded><![CDATA[<p>Seems to work for me, Doug. Firefox 1.5.0.4. Not sure what version of Flash player. (How do I check this?) WinXP.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->