<?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: Setting the label color on a disabled ComboBox control in Flex</title>
	<atom:link href="http://blog.flexexamples.com/2008/07/19/setting-the-label-color-on-a-disabled-combobox-control-in-flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2008/07/19/setting-the-label-color-on-a-disabled-combobox-control-in-flex/</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: Peter deHaan</title>
		<link>http://blog.flexexamples.com/2008/07/19/setting-the-label-color-on-a-disabled-combobox-control-in-flex/comment-page-1/#comment-5561</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Fri, 04 Sep 2009 01:39:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/07/19/setting-the-label-color-on-a-disabled-combobox-control-in-flex/#comment-5561</guid>
		<description>Actually, if you want to change the ComboBox button color on roll over, this may do the trick:
&lt;pre lang=&quot;mxml&quot;&gt;
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;mx:Application xmlns:mx=&quot;http://www.adobe.com/2006/mxml&quot;&gt;

    &lt;mx:ComboBox id=&quot;comboBox&quot;
            dataProvider=&quot;[The,Quick,Brown,Fox,Jumps,Over,The,Lazy,Dog]&quot;
            rollOver=&quot;comboBox.setStyle(&#039;color&#039;, &#039;red&#039;);&quot;
            rollOut=&quot;comboBox.setStyle(&#039;color&#039;, &#039;black&#039;);&quot;/&gt;

&lt;/mx:Application&gt;
&lt;/pre&gt;

Peter</description>
		<content:encoded><![CDATA[<p>Actually, if you want to change the ComboBox button color on roll over, this may do the trick:</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;mx:Application</span> xmlns:mx=<span style="color: #ff0000;">&quot;http://www.adobe.com/2006/mxml&quot;</span><span style="color: #7400FF;">&gt;</span></span>
&nbsp;
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:ComboBox</span> id=<span style="color: #ff0000;">&quot;comboBox&quot;</span></span>
<span style="color: #000000;">            dataProvider=<span style="color: #ff0000;">&quot;[The,Quick,Brown,Fox,Jumps,Over,The,Lazy,Dog]&quot;</span></span>
<span style="color: #000000;">            rollOver=<span style="color: #ff0000;">&quot;comboBox.setStyle('color', 'red');&quot;</span></span>
<span style="color: #000000;">            rollOut=<span style="color: #ff0000;">&quot;comboBox.setStyle('color', 'black');&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
&nbsp;
<span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:Application</span><span style="color: #7400FF;">&gt;</span></span></pre></div></div>

<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter deHaan</title>
		<link>http://blog.flexexamples.com/2008/07/19/setting-the-label-color-on-a-disabled-combobox-control-in-flex/comment-page-1/#comment-5560</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Fri, 04 Sep 2009 01:36:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/07/19/setting-the-label-color-on-a-disabled-combobox-control-in-flex/#comment-5560</guid>
		<description>@Jake,

Do you mean the ComboBox button or the ComboBox drop down list? For the ComboBox drop down list there is a &lt;code&gt;textRollOver&lt;/code&gt; style:
&lt;pre lang=&quot;mxml&quot;&gt;
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;mx:Application xmlns:mx=&quot;http://www.adobe.com/2006/mxml&quot;&gt;

    &lt;mx:ComboBox id=&quot;comboBox&quot;
            dataProvider=&quot;[The,Quick,Brown,Fox,Jumps,Over,The,Lazy,Dog]&quot;
            color=&quot;red&quot;
            textRollOverColor=&quot;purple&quot;/&gt;

&lt;/mx:Application&gt;
&lt;/pre&gt;

Peter</description>
		<content:encoded><![CDATA[<p>@Jake,</p>
<p>Do you mean the ComboBox button or the ComboBox drop down list? For the ComboBox drop down list there is a <code>textRollOver</code> style:</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;mx:Application</span> xmlns:mx=<span style="color: #ff0000;">&quot;http://www.adobe.com/2006/mxml&quot;</span><span style="color: #7400FF;">&gt;</span></span>
&nbsp;
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:ComboBox</span> id=<span style="color: #ff0000;">&quot;comboBox&quot;</span></span>
<span style="color: #000000;">            dataProvider=<span style="color: #ff0000;">&quot;[The,Quick,Brown,Fox,Jumps,Over,The,Lazy,Dog]&quot;</span></span>
<span style="color: #000000;">            color=<span style="color: #ff0000;">&quot;red&quot;</span></span>
<span style="color: #000000;">            textRollOverColor=<span style="color: #ff0000;">&quot;purple&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
&nbsp;
<span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:Application</span><span style="color: #7400FF;">&gt;</span></span></pre></div></div>

<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake</title>
		<link>http://blog.flexexamples.com/2008/07/19/setting-the-label-color-on-a-disabled-combobox-control-in-flex/comment-page-1/#comment-5510</link>
		<dc:creator>Jake</dc:creator>
		<pubDate>Mon, 31 Aug 2009 17:37:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/07/19/setting-the-label-color-on-a-disabled-combobox-control-in-flex/#comment-5510</guid>
		<description>Hi Peter,

Is there a way to target the ComboBox label on rollover? I&#039;d like to change the color of the label on rollover/rollout or mouseover/mouseout.

Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hi Peter,</p>
<p>Is there a way to target the ComboBox label on rollover? I&#8217;d like to change the color of the label on rollover/rollout or mouseover/mouseout.</p>
<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

