<?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: Adding links to a Panel container&#8217;s status text in Flex</title>
	<atom:link href="http://blog.flexexamples.com/2008/04/17/adding-links-to-a-panel-containers-status-text-in-flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2008/04/17/adding-links-to-a-panel-containers-status-text-in-flex/</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Sun, 12 Feb 2012 14:19:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Santhosh</title>
		<link>http://blog.flexexamples.com/2008/04/17/adding-links-to-a-panel-containers-status-text-in-flex/comment-page-1/#comment-9312</link>
		<dc:creator>Santhosh</dc:creator>
		<pubDate>Fri, 17 Jun 2011 10:40:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/04/17/adding-links-to-a-panel-containers-status-text-in-flex/#comment-9312</guid>
		<description>You can use statusStyleName and set the color to any color we want</description>
		<content:encoded><![CDATA[<p>You can use statusStyleName and set the color to any color we want</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter deHaan</title>
		<link>http://blog.flexexamples.com/2008/04/17/adding-links-to-a-panel-containers-status-text-in-flex/comment-page-1/#comment-7965</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Fri, 18 Jun 2010 20:56:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/04/17/adding-links-to-a-panel-containers-status-text-in-flex/#comment-7965</guid>
		<description>Or you may be able to call the &lt;code&gt;setColor()&lt;/code&gt; method on the IUITextField instance, as seen in the following snippet:
&lt;pre lang=&quot;actionscript3&quot;&gt;
private function init():void {
    var tf:IUITextField = panel.mx_internal::getStatusTextField();
    tf.setColor(0xFF0000);
    tf.selectable = true;
    tf.addEventListener(TextEvent.LINK, textField_link);
    tf.htmlText = &quot;status with &lt;a href=&#039;event:showAlert&#039; rel=&quot;nofollow&quot;&gt;&lt;u&gt;link&lt;/u&gt;&lt;/a&gt;&quot;;
}
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Or you may be able to call the <code>setColor()</code> method on the IUITextField instance, as seen in the following snippet:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #0033ff; font-weight: bold;">private</span> <span style="color: #339966; font-weight: bold;">function</span> <span style="color: #004993;">init</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span> <span style="color: #000000;">&#123;</span>
    <span style="color: #6699cc; font-weight: bold;">var</span> tf<span style="color: #000066; font-weight: bold;">:</span>IUITextField = panel<span style="color: #000066; font-weight: bold;">.</span>mx_internal<span style="color: #000066; font-weight: bold;">::</span>getStatusTextField<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span>
    tf<span style="color: #000066; font-weight: bold;">.</span>setColor<span style="color: #000000;">&#40;</span>0xFF0000<span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span>
    tf<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">selectable</span> = <span style="color: #0033ff; font-weight: bold;">true</span><span style="color: #000066; font-weight: bold;">;</span>
    tf<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">TextEvent</span><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">LINK</span><span style="color: #000066; font-weight: bold;">,</span> textField_link<span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span>
    tf<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">htmlText</span> = <span style="color: #990000;">&quot;status with &lt;a href='event:showAlert' rel=&quot;</span>nofollow<span style="color: #990000;">&quot;&gt;&lt;u&gt;link&lt;/u&gt;&lt;/a&gt;&quot;</span><span style="color: #000066; font-weight: bold;">;</span>
<span style="color: #000000;">&#125;</span></pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>By: Peter deHaan</title>
		<link>http://blog.flexexamples.com/2008/04/17/adding-links-to-a-panel-containers-status-text-in-flex/comment-page-1/#comment-7964</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Fri, 18 Jun 2010 20:51:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/04/17/adding-links-to-a-panel-containers-status-text-in-flex/#comment-7964</guid>
		<description>@jason,

Great question. I don&#039;t think I have any specific examples for that, but this may help get you started: &lt;a href=&quot;http://blog.flexexamples.com/2008/03/22/applying-a-cascading-style-sheet-to-a-textarea-control-in-flex/&quot; rel=&quot;nofollow&quot;&gt;&quot;Applying a cascading style sheet to a TextArea control in Flex&quot;&lt;/a&gt;.

Basically just create a StyleSheet object then create a selector for the &lt;em&gt;a&lt;/em&gt; tag and set the color to to #FFFFFF/white.

Peter</description>
		<content:encoded><![CDATA[<p>@jason,</p>
<p>Great question. I don&#8217;t think I have any specific examples for that, but this may help get you started: <a href="http://blog.flexexamples.com/2008/03/22/applying-a-cascading-style-sheet-to-a-textarea-control-in-flex/" rel="nofollow">&#8220;Applying a cascading style sheet to a TextArea control in Flex&#8221;</a>.</p>
<p>Basically just create a StyleSheet object then create a selector for the <em>a</em> tag and set the color to to #FFFFFF/white.</p>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jason</title>
		<link>http://blog.flexexamples.com/2008/04/17/adding-links-to-a-panel-containers-status-text-in-flex/comment-page-1/#comment-7963</link>
		<dc:creator>jason</dc:creator>
		<pubDate>Fri, 18 Jun 2010 20:29:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/04/17/adding-links-to-a-panel-containers-status-text-in-flex/#comment-7963</guid>
		<description>How can you change the color of the link? I have a dark background and need the link white?</description>
		<content:encoded><![CDATA[<p>How can you change the color of the link? I have a dark background and need the link white?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PSingh</title>
		<link>http://blog.flexexamples.com/2008/04/17/adding-links-to-a-panel-containers-status-text-in-flex/comment-page-1/#comment-4881</link>
		<dc:creator>PSingh</dc:creator>
		<pubDate>Fri, 31 Jul 2009 22:23:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/04/17/adding-links-to-a-panel-containers-status-text-in-flex/#comment-4881</guid>
		<description>Hi Peter, Is it possible to put an image in the status of panel?  Thanks!</description>
		<content:encoded><![CDATA[<p>Hi Peter, Is it possible to put an image in the status of panel?  Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

