<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Flex Examples &#187; ComboBox</title>
	<atom:link href="http://blog.flexexamples.com/category/halo/combobox/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Sat, 20 Mar 2010 17:34:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<atom:link rel='hub' href='http://blog.flexexamples.com/?pushpress=hub'/>
		<item>
		<title>Creating a simple estimate form in Flex</title>
		<link>http://blog.flexexamples.com/2010/02/15/creating-a-simple-estimate-form-in-flex/</link>
		<comments>http://blog.flexexamples.com/2010/02/15/creating-a-simple-estimate-form-in-flex/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 05:50:03 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[ComboBox]]></category>
		<category><![CDATA[CurrencyFormatter]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[parseFloat()]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/?p=2488</guid>
		<description><![CDATA[The following example shows how you can create a simple online estimate form in Flex using some ComboBox controls and some simple ActionScript.


&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;!-- http://blog.flexexamples.com/2010/02/15/creating-a-simple-estimate-form-in-flex/ --&#62;
&#60;mx:Application name=&#34;EstimateForm_test&#34;
        xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34;
        layout=&#34;vertical&#34;
        verticalAlign=&#34;middle&#34;
    [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2010/02/15/creating-a-simple-estimate-form-in-flex/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Changing the opening and closing easing functions on a Halo ComboBox control in Flex 4</title>
		<link>http://blog.flexexamples.com/2009/08/05/changing-the-opening-and-closing-easing-functions-on-a-halo-combobox-control-in-flex-4/</link>
		<comments>http://blog.flexexamples.com/2009/08/05/changing-the-opening-and-closing-easing-functions-on-a-halo-combobox-control-in-flex-4/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 14:20:05 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[ComboBox]]></category>
		<category><![CDATA[beta1]]></category>
		<category><![CDATA[closeDuration]]></category>
		<category><![CDATA[closeEasingFunction]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[openDuration]]></category>
		<category><![CDATA[openEasingFunction]]></category>
		<category><![CDATA[PropertyReference()]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/?p=1504</guid>
		<description><![CDATA[In a previous example, &#8220;Changing the Flex ComboBox control&#8217;s opening and closing easing functions&#8221;, we saw how you could control how the open/close duration and easing functions on the drop down list in a Halo ComboBox control by setting the openDuration, openEasingFunction, closeDuration, and closeEasingFunction styles.
The following example shows how you can set the Halo [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2009/08/05/changing-the-opening-and-closing-easing-functions-on-a-halo-combobox-control-in-flex-4/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Setting the icon symbol color on a Halo ComboBox control in Flex 4</title>
		<link>http://blog.flexexamples.com/2009/07/12/setting-the-icon-symbol-color-on-a-halo-combobox-control-in-flex-4/</link>
		<comments>http://blog.flexexamples.com/2009/07/12/setting-the-icon-symbol-color-on-a-halo-combobox-control-in-flex-4/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 06:59:17 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[ComboBox]]></category>
		<category><![CDATA[beta1]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[symbolColor]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/?p=1492</guid>
		<description><![CDATA[The following example shows how you can set the icon/symbol color on a Halo ComboBox control in Flex 4 by setting the symbolColor style.
Full code after the jump.


&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;!-- http://blog.flexexamples.com/2009/07/12/setting-the-icon-symbol-color-on-a-halo-combobox-control-in-flex-4/ --&#62;
&#60;s:Application name=&#34;Halo_ComboBox_symbolColor_test&#34;
        xmlns:fx=&#34;http://ns.adobe.com/mxml/2009&#34;
        xmlns:s=&#34;library://ns.adobe.com/flex/spark&#34;
       [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2009/07/12/setting-the-icon-symbol-color-on-a-halo-combobox-control-in-flex-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing the vertical separator from the Halo ComboBox control in Flex 4</title>
		<link>http://blog.flexexamples.com/2009/07/11/removing-the-vertical-separator-from-the-halo-combobox-control-in-flex-4/</link>
		<comments>http://blog.flexexamples.com/2009/07/11/removing-the-vertical-separator-from-the-halo-combobox-control-in-flex-4/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 06:59:31 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[ComboBox]]></category>
		<category><![CDATA[beta1]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[skin]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/?p=1486</guid>
		<description><![CDATA[In a previous example, &#8220;Removing the vertical separator from the ComboBox control in Flex&#8221;, we saw how you could remove the vertical separator from the Flex ComboBox control by creating a custom ComboBox skin using ActionScript.
The following example shows how you can remove the vertical separator fro a Halo ComboBox control (with default Spark skin) [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2009/07/11/removing-the-vertical-separator-from-the-halo-combobox-control-in-flex-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing the vertical separator from the ComboBox control in Flex</title>
		<link>http://blog.flexexamples.com/2009/03/23/removing-the-vertical-separator-from-the-combobox-control-in-flex/</link>
		<comments>http://blog.flexexamples.com/2009/03/23/removing-the-vertical-separator-from-the-combobox-control-in-flex/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 02:25:42 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[ComboBox]]></category>
		<category><![CDATA[ComboBoxArrowSkin]]></category>
		<category><![CDATA[skin]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/2009/03/23/removing-the-vertical-separator-from-the-combobox-control-in-flex/</guid>
		<description><![CDATA[The following example shows how you can remove the vertical separator from the Flex ComboBox control by creating a custom ComboBox skin using ActionScript.
Full code after the jump.


&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;!-- http://blog.flexexamples.com/2009/03/23/removing-the-vertical-separator-from-the-combobox-control-in-flex/ --&#62;
&#60;mx:Application name=&#34;ComboBox_skin_test&#34;
        xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34;
        backgroundColor=&#34;white&#34;&#62;
&#160;
    &#60;mx:ComboBox id=&#34;comboBox&#34;
  [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2009/03/23/removing-the-vertical-separator-from-the-combobox-control-in-flex/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Setting the arrow icon color of a disabled CheckBox control in Flex</title>
		<link>http://blog.flexexamples.com/2009/01/29/setting-the-arrow-icon-color-of-a-disabled-checkbox-control-in-flex/</link>
		<comments>http://blog.flexexamples.com/2009/01/29/setting-the-arrow-icon-color-of-a-disabled-checkbox-control-in-flex/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 07:56:21 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[ComboBox]]></category>
		<category><![CDATA[disabledIconColor]]></category>
		<category><![CDATA[enabled]]></category>
		<category><![CDATA[iconColor]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/2009/01/29/setting-the-arrow-icon-color-of-a-disabled-checkbox-control-in-flex/</guid>
		<description><![CDATA[The following example shows how you can set the icon color of a disabled Flex CheckBox control by setting the disabledIconColor style.
Full code after the jump.

View MXML

&#60;?xml version="1.0" encoding="utf-8"?&#62;
&#60;!-- http://blog.flexexamples.com/2009/01/29/setting-the-arrow-icon-color-of-a-disabled-checkbox-control-in-flex/ --&#62;
&#60;mx:Application name="ComboBox_disabledIconColor_test"
        xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical"
        [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2009/01/29/setting-the-arrow-icon-color-of-a-disabled-checkbox-control-in-flex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting the dropdown menu border color on a ComboBox control in Flex</title>
		<link>http://blog.flexexamples.com/2008/09/21/setting-the-dropdown-menu-border-color-on-a-combobox-control-in-flex/</link>
		<comments>http://blog.flexexamples.com/2008/09/21/setting-the-dropdown-menu-border-color-on-a-combobox-control-in-flex/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 02:54:52 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[ComboBox]]></category>
		<category><![CDATA[dropdownBorderColor]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/2008/09/21/setting-the-dropdown-menu-border-color-on-a-combobox-control-in-flex/</guid>
		<description><![CDATA[The following example shows how you can set the border color for a Flex ComboBox control&#8217;s dropdown menu by setting the dropdownBorderColor style.
Full code after the jump.


&#60;?xml version="1.0" encoding="utf-8"?&#62;
&#60;!-- http://blog.flexexamples.com/2008/09/21/setting-the-dropdown-menu-border-color-on-a-combobox-control-in-flex/ --&#62;
&#60;mx:Application name="ComboBox_dropdownBorderColor_test"
        xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical"
        [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2008/09/21/setting-the-dropdown-menu-border-color-on-a-combobox-control-in-flex/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Displaying different fonts in a dropdown menu on a ComboBox control in Flex</title>
		<link>http://blog.flexexamples.com/2008/07/31/displaying-different-fonts-in-a-dropdown-menu-on-a-combobox-control-in-flex/</link>
		<comments>http://blog.flexexamples.com/2008/07/31/displaying-different-fonts-in-a-dropdown-menu-on-a-combobox-control-in-flex/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 14:56:04 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[ComboBox]]></category>
		<category><![CDATA[Component]]></category>
		<category><![CDATA[dropdown]]></category>
		<category><![CDATA[fontFamily]]></category>
		<category><![CDATA[itemRenderer]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/2008/07/31/displaying-different-fonts-in-a-dropdown-menu-on-a-combobox-control-in-flex/</guid>
		<description><![CDATA[The following example shows how you can set different fonts for different items in a Flex ComboBox control&#8217;s dropdown menu by using a custom item renderer.
Full code after the jump.

View MXML

&#60;?xml version="1.0" encoding="utf-8"?&#62;
&#60;!-- http://blog.flexexamples.com/2008/07/31/displaying-different-fonts-in-a-dropdown-menu-on-a-combobox-control-in-flex/ --&#62;
&#60;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical"
        verticalAlign="top"
    [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2008/07/31/displaying-different-fonts-in-a-dropdown-menu-on-a-combobox-control-in-flex/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Setting the label color on a disabled ComboBox control in Flex</title>
		<link>http://blog.flexexamples.com/2008/07/19/setting-the-label-color-on-a-disabled-combobox-control-in-flex/</link>
		<comments>http://blog.flexexamples.com/2008/07/19/setting-the-label-color-on-a-disabled-combobox-control-in-flex/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 06:57:51 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[ComboBox]]></category>
		<category><![CDATA[disabledColor]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/2008/07/19/setting-the-label-color-on-a-disabled-combobox-control-in-flex/</guid>
		<description><![CDATA[The following example shows how you can set the label color on a disabled Flex ComboBox control by setting the disabledColor style.
Full code after the jump.

View MXML

&#60;?xml version="1.0" encoding="utf-8"?&#62;
&#60;!-- http://blog.flexexamples.com/2008/07/19/setting-the-label-color-on-a-disabled-combobox-control-in-flex/ --&#62;
&#60;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical"
        verticalAlign="top"
        [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2008/07/19/setting-the-label-color-on-a-disabled-combobox-control-in-flex/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Setting the dropdown menu border thickness and border color on a ComboBox control in Flex</title>
		<link>http://blog.flexexamples.com/2008/07/18/setting-the-dropdown-menu-border-thickness-and-border-color-on-a-combobox-control-in-flex/</link>
		<comments>http://blog.flexexamples.com/2008/07/18/setting-the-dropdown-menu-border-thickness-and-border-color-on-a-combobox-control-in-flex/#comments</comments>
		<pubDate>Sat, 19 Jul 2008 06:37:57 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[ComboBox]]></category>
		<category><![CDATA[borderColor]]></category>
		<category><![CDATA[borderThickness]]></category>
		<category><![CDATA[dropdownStyleName]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/2008/07/18/setting-the-dropdown-menu-border-thickness-and-border-color-on-a-combobox-control-in-flex/</guid>
		<description><![CDATA[The following example shows how you can set the border color and border thickness on a Flex ComboBox control&#8217;s dropdown menu by setting the borderColor, borderThickness, and dropdownStyleName styles.
Full code after the jump.

View MXML

&#60;?xml version="1.0" encoding="utf-8"?&#62;
&#60;!-- http://blog.flexexamples.com/2008/07/18/setting-the-dropdown-menu-border-thickness-and-border-color-on-a-combobox-control-in-flex/ --&#62;
&#60;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical"
        verticalAlign="top"
 [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2008/07/18/setting-the-dropdown-menu-border-thickness-and-border-color-on-a-combobox-control-in-flex/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
