<?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: Removing the hand cursor from a disabled LinkButton control in Flex</title>
	<atom:link href="http://blog.flexexamples.com/2008/09/07/removing-the-hand-cursor-from-a-disabled-linkbutton-control-in-flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2008/09/07/removing-the-hand-cursor-from-a-disabled-linkbutton-control-in-flex/</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Fri, 19 Mar 2010 20:35:16 +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://blog.flexexamples.com/2008/09/07/removing-the-hand-cursor-from-a-disabled-linkbutton-control-in-flex/comment-page-1/#comment-3792</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Thu, 02 Apr 2009 18:18:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/09/07/removing-the-hand-cursor-from-a-disabled-linkbutton-control-in-flex/#comment-3792</guid>
		<description>@Geert

No...  Actually you are binding to the &#039;&lt;code&gt;selected&lt;/code&gt;&#039; property of a different control.

You cannot bind to the &#039;&lt;code&gt;enabled&lt;/code&gt;&#039; property.  The following would not work:
&lt;pre class=&quot;code&quot;&gt;
&lt;mx:LinkButton id=&quot;linkButton&quot;
            label=&quot;Default LinkButton&quot;
            enabled=&quot;{checkBox.selected}&quot;
            useHandCursor=&quot;{linkButton.enabled}&quot; /&gt;
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>@Geert</p>
<p>No&#8230;  Actually you are binding to the &#8216;<code>selected</code>&#8216; property of a different control.</p>
<p>You cannot bind to the &#8216;<code>enabled</code>&#8216; property.  The following would not work:</p>
<pre class="code">
&lt;mx:LinkButton id="linkButton"
            label="Default LinkButton"
            enabled="{checkBox.selected}"
            useHandCursor="{linkButton.enabled}" /&gt;
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Geert</title>
		<link>http://blog.flexexamples.com/2008/09/07/removing-the-hand-cursor-from-a-disabled-linkbutton-control-in-flex/comment-page-1/#comment-3793</link>
		<dc:creator>Geert</dc:creator>
		<pubDate>Mon, 06 Oct 2008 12:49:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/09/07/removing-the-hand-cursor-from-a-disabled-linkbutton-control-in-flex/#comment-3793</guid>
		<description>Why would you need to extend the LinkButton?
Setting the &#039;&lt;code&gt;useHandCursor&lt;/code&gt;&#039; property to the same value as the &#039;&lt;code&gt;enabled&lt;/code&gt;&#039; property works just fine:
&lt;pre class=&quot;code&quot;&gt;
&lt;mx:LinkButton id=&quot;linkButton&quot;
            label=&quot;Default LinkButton&quot;
            enabled=&quot;{checkBox.selected}&quot;
            useHandCursor=&quot;{checkBox.selected}&quot; /&gt;
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Why would you need to extend the LinkButton?<br />
Setting the &#8216;<code>useHandCursor</code>&#8216; property to the same value as the &#8216;<code>enabled</code>&#8216; property works just fine:</p>
<pre class="code">
&lt;mx:LinkButton id="linkButton"
            label="Default LinkButton"
            enabled="{checkBox.selected}"
            useHandCursor="{checkBox.selected}" /&gt;
</pre>
]]></content:encoded>
	</item>
</channel>
</rss>
