<?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: Flex : How to Display Hand Cursor on Components</title>
	<atom:link href="http://www.anujgakhar.com/2008/03/27/flex-how-to-display-hand-cursor-on-components/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.anujgakhar.com/2008/03/27/flex-how-to-display-hand-cursor-on-components/</link>
	<description>Anuj @ ColdFusion, Flex and some more....</description>
	<lastBuildDate>Tue, 09 Mar 2010 14:46:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: dan</title>
		<link>http://www.anujgakhar.com/2008/03/27/flex-how-to-display-hand-cursor-on-components/comment-page-1/#comment-3432</link>
		<dc:creator>dan</dc:creator>
		<pubDate>Tue, 22 Sep 2009 09:37:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/2008/03/27/flex-how-to-display-hand-cursor-on-components/#comment-3432</guid>
		<description>set mouseChildren on components that contain children if you want mouse events to apply to the whole component and not separately for each of its children (be careful though, it will disabled their own unique events).</description>
		<content:encoded><![CDATA[<p>set mouseChildren on components that contain children if you want mouse events to apply to the whole component and not separately for each of its children (be careful though, it will disabled their own unique events).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ansury</title>
		<link>http://www.anujgakhar.com/2008/03/27/flex-how-to-display-hand-cursor-on-components/comment-page-1/#comment-3419</link>
		<dc:creator>Ansury</dc:creator>
		<pubDate>Sun, 06 Sep 2009 00:33:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/2008/03/27/flex-how-to-display-hand-cursor-on-components/#comment-3419</guid>
		<description>&quot;I understand what mouseChildren means, if we set it to false, it basically stops all the mouse activities on that control and we need to do custom events for mouse actions but why I had to set it to false for Label and Text, I am not sure yet! Maybe someone can explain ?&quot;

A component like &quot;Text&quot; isn&#039;t a container and can&#039;t have children, so I&#039;m thinking that has something to do with it, but I&#039;ve never looked into it myself.</description>
		<content:encoded><![CDATA[<p>&#8220;I understand what mouseChildren means, if we set it to false, it basically stops all the mouse activities on that control and we need to do custom events for mouse actions but why I had to set it to false for Label and Text, I am not sure yet! Maybe someone can explain ?&#8221;</p>
<p>A component like &#8220;Text&#8221; isn&#8217;t a container and can&#8217;t have children, so I&#8217;m thinking that has something to do with it, but I&#8217;ve never looked into it myself.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chhabeg</title>
		<link>http://www.anujgakhar.com/2008/03/27/flex-how-to-display-hand-cursor-on-components/comment-page-1/#comment-3238</link>
		<dc:creator>chhabeg</dc:creator>
		<pubDate>Sun, 29 Mar 2009 07:27:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/2008/03/27/flex-how-to-display-hand-cursor-on-components/#comment-3238</guid>
		<description>thats great..</description>
		<content:encoded><![CDATA[<p>thats great..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Timothy Jones</title>
		<link>http://www.anujgakhar.com/2008/03/27/flex-how-to-display-hand-cursor-on-components/comment-page-1/#comment-3133</link>
		<dc:creator>Timothy Jones</dc:creator>
		<pubDate>Thu, 05 Feb 2009 20:58:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/2008/03/27/flex-how-to-display-hand-cursor-on-components/#comment-3133</guid>
		<description>I looked at the API for this and my impression (though I have not tested this) is that the mouseChildren requirement comes from Label&#039;s internal textField UIComponent that it uses to actually render the text.  Since textField is itself a UIComponent, it would by default capture the mouse, and any mouse related parameters would have to be set on it (Label.TextField) instead.  By setting mouseChildren = false, the mouse focus is not allowed to drop down to the Text Field.  Anyone know? :)</description>
		<content:encoded><![CDATA[<p>I looked at the API for this and my impression (though I have not tested this) is that the mouseChildren requirement comes from Label&#8217;s internal textField UIComponent that it uses to actually render the text.  Since textField is itself a UIComponent, it would by default capture the mouse, and any mouse related parameters would have to be set on it (Label.TextField) instead.  By setting mouseChildren = false, the mouse focus is not allowed to drop down to the Text Field.  Anyone know? <img src='http://www.anujgakhar.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg</title>
		<link>http://www.anujgakhar.com/2008/03/27/flex-how-to-display-hand-cursor-on-components/comment-page-1/#comment-2912</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Thu, 14 Aug 2008 21:05:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/2008/03/27/flex-how-to-display-hand-cursor-on-components/#comment-2912</guid>
		<description>This also works for when you import fl.controls.button in an Actionscript only project.
see http://joshblog.net/2008/02/10/how-to-use-the-flash-cs3-component-set-in-a-flex-builder-actionscript-project/
and
http://de-co-de.blogspot.com/2008/03/wheres-my-skin.html</description>
		<content:encoded><![CDATA[<p>This also works for when you import fl.controls.button in an Actionscript only project.<br />
see <a href="http://joshblog.net/2008/02/10/how-to-use-the-flash-cs3-component-set-in-a-flex-builder-actionscript-project/" rel="nofollow">http://joshblog.net/2008/02/10/how-to-use-the-flash-cs3-component-set-in-a-flex-builder-actionscript-project/</a><br />
and<br />
<a href="http://de-co-de.blogspot.com/2008/03/wheres-my-skin.html" rel="nofollow">http://de-co-de.blogspot.com/2008/03/wheres-my-skin.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dylan</title>
		<link>http://www.anujgakhar.com/2008/03/27/flex-how-to-display-hand-cursor-on-components/comment-page-1/#comment-2888</link>
		<dc:creator>Dylan</dc:creator>
		<pubDate>Wed, 30 Jul 2008 14:53:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/2008/03/27/flex-how-to-display-hand-cursor-on-components/#comment-2888</guid>
		<description>The best you can for the ComboBox is to set buttonMode=&quot;true&quot; but do not set mouseChildren or else it will disable the ability to use the drop down.  Setting buttonMode=&quot;true&quot; allows you to have a hand cursor over the down triangle but not on the option labels.</description>
		<content:encoded><![CDATA[<p>The best you can for the ComboBox is to set buttonMode=&#8221;true&#8221; but do not set mouseChildren or else it will disable the ability to use the drop down.  Setting buttonMode=&#8221;true&#8221; allows you to have a hand cursor over the down triangle but not on the option labels.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anuj Gakhar</title>
		<link>http://www.anujgakhar.com/2008/03/27/flex-how-to-display-hand-cursor-on-components/comment-page-1/#comment-2800</link>
		<dc:creator>Anuj Gakhar</dc:creator>
		<pubDate>Tue, 27 May 2008 09:00:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/2008/03/27/flex-how-to-display-hand-cursor-on-components/#comment-2800</guid>
		<description>@kanu, how did you try the click events , did you add an event listener for the click events? My understanding is it should work.</description>
		<content:encoded><![CDATA[<p>@kanu, how did you try the click events , did you add an event listener for the click events? My understanding is it should work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kanu kukreja</title>
		<link>http://www.anujgakhar.com/2008/03/27/flex-how-to-display-hand-cursor-on-components/comment-page-1/#comment-2798</link>
		<dc:creator>kanu kukreja</dc:creator>
		<pubDate>Mon, 26 May 2008 19:29:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/2008/03/27/flex-how-to-display-hand-cursor-on-components/#comment-2798</guid>
		<description>its perfectly fine thing whatever you have mentioned, but problem with this is it disables the click events of text and label :(
do  have any solution for this?</description>
		<content:encoded><![CDATA[<p>its perfectly fine thing whatever you have mentioned, but problem with this is it disables the click events of text and label <img src='http://www.anujgakhar.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
do  have any solution for this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: frank</title>
		<link>http://www.anujgakhar.com/2008/03/27/flex-how-to-display-hand-cursor-on-components/comment-page-1/#comment-2775</link>
		<dc:creator>frank</dc:creator>
		<pubDate>Sun, 11 May 2008 23:14:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/2008/03/27/flex-how-to-display-hand-cursor-on-components/#comment-2775</guid>
		<description>cool actually it turns out the shape object doesn&#039;t support those properties so i had to use a sprite instead.  thanks!</description>
		<content:encoded><![CDATA[<p>cool actually it turns out the shape object doesn&#8217;t support those properties so i had to use a sprite instead.  thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anuj Gakhar</title>
		<link>http://www.anujgakhar.com/2008/03/27/flex-how-to-display-hand-cursor-on-components/comment-page-1/#comment-2774</link>
		<dc:creator>Anuj Gakhar</dc:creator>
		<pubDate>Sun, 11 May 2008 17:06:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/2008/03/27/flex-how-to-display-hand-cursor-on-components/#comment-2774</guid>
		<description>s.buttonMode = true;
s.useHandCursor = true;

something like that, given that s is your Shape object.</description>
		<content:encoded><![CDATA[<p>s.buttonMode = true;<br />
s.useHandCursor = true;</p>
<p>something like that, given that s is your Shape object.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
