<?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: Creating a toggleable MX LinkButton control in Flex 4</title>
	<atom:link href="http://blog.flexexamples.com/2010/02/04/creating-a-toggleable-mx-linkbutton-control-in-flex-4/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2010/02/04/creating-a-toggleable-mx-linkbutton-control-in-flex-4/</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Sun, 12 Feb 2012 19:26:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Chris</title>
		<link>http://blog.flexexamples.com/2010/02/04/creating-a-toggleable-mx-linkbutton-control-in-flex-4/comment-page-1/#comment-7146</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Tue, 02 Mar 2010 15:59:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/?p=2391#comment-7146</guid>
		<description>Cheers Peter,
Works with build 4.0.0.14288 in Flex 3 Builder (I couldn&#039;t compile in current Flash Builder beta because of the Halo namespace change).

I hadn&#039;t noticed the issue with hit area until now :)</description>
		<content:encoded><![CDATA[<p>Cheers Peter,<br />
Works with build 4.0.0.14288 in Flex 3 Builder (I couldn&#8217;t compile in current Flash Builder beta because of the Halo namespace change).</p>
<p>I hadn&#8217;t noticed the issue with hit area until now :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter deHaan</title>
		<link>http://blog.flexexamples.com/2010/02/04/creating-a-toggleable-mx-linkbutton-control-in-flex-4/comment-page-1/#comment-7145</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Tue, 02 Mar 2010 00:09:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/?p=2391#comment-7145</guid>
		<description>Although I did notice this issue; http://bugs.adobe.com/jira/browse/SDK-25707

Not sure if you&#039;re running in to that. Looks like the MX LinkButton control&#039;s skin&#039;s up state doesnt handle non-default sized hit areas very well.

Peter</description>
		<content:encoded><![CDATA[<p>Although I did notice this issue; <a href="http://bugs.adobe.com/jira/browse/SDK-25707" rel="nofollow">http://bugs.adobe.com/jira/browse/SDK-25707</a></p>
<p>Not sure if you&#8217;re running in to that. Looks like the MX LinkButton control&#8217;s skin&#8217;s up state doesnt handle non-default sized hit areas very well.</p>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter deHaan</title>
		<link>http://blog.flexexamples.com/2010/02/04/creating-a-toggleable-mx-linkbutton-control-in-flex-4/comment-page-1/#comment-7144</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Mon, 01 Mar 2010 23:33:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/?p=2391#comment-7144</guid>
		<description>@Chris,

This code seems to work for me in Flex 4.0.0.14288. Rolling over the LinkButton control gives me a red background, pressing (and holding) the mouse button over the LinkButton control gives me an orange background:
&lt;pre lang=&quot;mxml&quot;&gt;
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;s:Application xmlns:fx=&quot;http://ns.adobe.com/mxml/2009&quot;
        xmlns:s=&quot;library://ns.adobe.com/flex/spark&quot;
        xmlns:mx=&quot;library://ns.adobe.com/flex/mx&quot;&gt;

    &lt;mx:LinkButton id=&quot;linkBtn&quot;
            rollOverColor=&quot;red&quot;
            selectionColor=&quot;haloOrange&quot;
            initialize=&quot;linkBtn.label = mx_internal::VERSION;&quot; /&gt;
    
&lt;/s:Application&gt;
&lt;/pre&gt;

Peter</description>
		<content:encoded><![CDATA[<p>@Chris,</p>
<p>This code seems to work for me in Flex 4.0.0.14288. Rolling over the LinkButton control gives me a red background, pressing (and holding) the mouse button over the LinkButton control gives me an orange background:</p>

<div class="wp_syntax"><div class="code"><pre class="mxml" style="font-family:monospace;"><span style="color: #000000;">&lt;?xml version=<span style="color: #ff0000;">&quot;1.0&quot;</span> encoding=<span style="color: #ff0000;">&quot;utf-8&quot;</span>?<span style="color: #7400FF;">&gt;</span></span>
<span style="color: #000000;"><span style="color: #7400FF;">&lt;s:Application</span> xmlns:fx=<span style="color: #ff0000;">&quot;http://ns.adobe.com/mxml/2009&quot;</span></span>
<span style="color: #000000;">        xmlns:s=<span style="color: #ff0000;">&quot;library://ns.adobe.com/flex/spark&quot;</span></span>
<span style="color: #000000;">        xmlns:mx=<span style="color: #ff0000;">&quot;library://ns.adobe.com/flex/mx&quot;</span><span style="color: #7400FF;">&gt;</span></span>
&nbsp;
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:LinkButton</span> id=<span style="color: #ff0000;">&quot;linkBtn&quot;</span></span>
<span style="color: #000000;">            rollOverColor=<span style="color: #ff0000;">&quot;red&quot;</span></span>
<span style="color: #000000;">            selectionColor=<span style="color: #ff0000;">&quot;haloOrange&quot;</span></span>
<span style="color: #000000;">            initialize=<span style="color: #ff0000;">&quot;linkBtn.label = mx_internal::VERSION;&quot;</span> <span style="color: #7400FF;">/&gt;</span></span>
&nbsp;
<span style="color: #000000;"><span style="color: #7400FF;">&lt;/s:Application</span><span style="color: #7400FF;">&gt;</span></span></pre></div></div>

<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://blog.flexexamples.com/2010/02/04/creating-a-toggleable-mx-linkbutton-control-in-flex-4/comment-page-1/#comment-7143</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Mon, 01 Mar 2010 22:09:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/?p=2391#comment-7143</guid>
		<description>Hi Peter,
I&#039;m trying to set the rollOverColor property on a Halo LinkButton in MXML, without success.
e.g., 
&lt;pre lang=&quot;mxml&quot;&gt;
&lt;mx:LinkButton label=&quot;Link&quot; rollOverColor=&quot;#ff0000&quot; /&gt;
&lt;/pre&gt;

The rollover colour displays correctly in Flex SDK 3.5, but seems to be ignored in Flex 4 (Beta 2 release).
Thanks,
Chris</description>
		<content:encoded><![CDATA[<p>Hi Peter,<br />
I&#8217;m trying to set the rollOverColor property on a Halo LinkButton in MXML, without success.<br />
e.g.,</p>

<div class="wp_syntax"><div class="code"><pre class="mxml" style="font-family:monospace;"><span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:LinkButton</span> label=<span style="color: #ff0000;">&quot;Link&quot;</span> rollOverColor=<span style="color: #ff0000;">&quot;#ff0000&quot;</span> <span style="color: #7400FF;">/&gt;</span></span></pre></div></div>

<p>The rollover colour displays correctly in Flex SDK 3.5, but seems to be ignored in Flex 4 (Beta 2 release).<br />
Thanks,<br />
Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JabbyPanda</title>
		<link>http://blog.flexexamples.com/2010/02/04/creating-a-toggleable-mx-linkbutton-control-in-flex-4/comment-page-1/#comment-7088</link>
		<dc:creator>JabbyPanda</dc:creator>
		<pubDate>Tue, 23 Feb 2010 16:17:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/?p=2391#comment-7088</guid>
		<description>Hi Peter, looks like it Dropbox fault, the service went down for couple of minutes, everything is back to normal now.</description>
		<content:encoded><![CDATA[<p>Hi Peter, looks like it Dropbox fault, the service went down for couple of minutes, everything is back to normal now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter deHaan</title>
		<link>http://blog.flexexamples.com/2010/02/04/creating-a-toggleable-mx-linkbutton-control-in-flex-4/comment-page-1/#comment-7087</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Tue, 23 Feb 2010 15:35:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/?p=2391#comment-7087</guid>
		<description>@JabbyPanda,

The SWF looks right to me (Win7/Chrome). What looks mangled on your end?

Peter</description>
		<content:encoded><![CDATA[<p>@JabbyPanda,</p>
<p>The SWF looks right to me (Win7/Chrome). What looks mangled on your end?</p>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JabbyPanda</title>
		<link>http://blog.flexexamples.com/2010/02/04/creating-a-toggleable-mx-linkbutton-control-in-flex-4/comment-page-1/#comment-7086</link>
		<dc:creator>JabbyPanda</dc:creator>
		<pubDate>Tue, 23 Feb 2010 15:30:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/?p=2391#comment-7086</guid>
		<description>Dropbox had mangled the uploaded SWF file :-/</description>
		<content:encoded><![CDATA[<p>Dropbox had mangled the uploaded SWF file :-/</p>
]]></content:encoded>
	</item>
</channel>
</rss>

