<?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; Gumbo</title>
	<atom:link href="http://blog.flexexamples.com/tag/gumbo/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Tue, 16 Mar 2010 03:50:20 +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>Checking that an item is selected in the Spark DropDownList control in Flex 4</title>
		<link>http://blog.flexexamples.com/2010/03/12/checking-that-an-item-is-selected-in-the-spark-dropdownlist-control-in-flex-4/</link>
		<comments>http://blog.flexexamples.com/2010/03/12/checking-that-an-item-is-selected-in-the-spark-dropdownlist-control-in-flex-4/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 00:49:23 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[DropDownList (Spark)]]></category>
		<category><![CDATA[NumberValidator]]></category>
		<category><![CDATA[beta2]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[lowerThanMinError]]></category>
		<category><![CDATA[requiresSelection]]></category>
		<category><![CDATA[selectedIndex]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/?p=2597</guid>
		<description><![CDATA[The following example shows how you can check whether the user has selected an item in the Spark DropDownList control in Flex 4 by setting the Boolean requiresSelection property to true or using a NumberValidator to check the DropDownList control&#8217;s selectedIndex property is greater than -1.


&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; 
&#60;!-- http://blog.flexexamples.com/2010/03/12/checking-that-an-item-is-selected-in-the-spark-dropdownlist-control-in-flex-4/ --&#62;
&#60;s:Application name=&#34;Spark_DropDownList_requiresSelection_test&#34;
    [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2010/03/12/checking-that-an-item-is-selected-in-the-spark-dropdownlist-control-in-flex-4/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creating a justified multiline Spark Button control in Flex 4</title>
		<link>http://blog.flexexamples.com/2010/03/09/creating-a-justified-multiline-spark-button-control-in-flex-4/</link>
		<comments>http://blog.flexexamples.com/2010/03/09/creating-a-justified-multiline-spark-button-control-in-flex-4/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 01:07:48 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[Button (Spark)]]></category>
		<category><![CDATA[beta2]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[skinClass]]></category>
		<category><![CDATA[textAlign]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/?p=2586</guid>
		<description><![CDATA[The following example shows how you can create a multiline, justified label on Spark Button control in Flex 4 by creating a custom skin and setting the textAlign style and removing the maxDisplayedLines property.


&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;!-- http://blog.flexexamples.com/2010/03/09/creating-a-justified-multiline-spark-button-control-in-flex-4/ --&#62;
&#60;s:Application name=&#34;Spark_Button_skinClass_textAlign_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/2010/03/09/creating-a-justified-multiline-spark-button-control-in-flex-4/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Creating a drop down DataGrid control in Flex 4</title>
		<link>http://blog.flexexamples.com/2010/03/09/creating-a-drop-down-datagrid-control-in-flex-4/</link>
		<comments>http://blog.flexexamples.com/2010/03/09/creating-a-drop-down-datagrid-control-in-flex-4/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 18:36:43 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[DataGrid]]></category>
		<category><![CDATA[PopUpAnchor (Spark)]]></category>
		<category><![CDATA[beta2]]></category>
		<category><![CDATA[displayPopUp]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[popUpPosition]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/?p=2582</guid>
		<description><![CDATA[The following example shows how you can create a drop down MX DataGrid control in Flex 4 using the Spark PopUpAnchor control in Flex 4.


&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;!-- http://blog.flexexamples.com/2010/03/09/creating-a-drop-down-datagrid-control-in-flex-4/ --&#62;
&#60;s:Application name=&#34;Spark_PopUpAnchor_DataGrid_test&#34;
        xmlns:fx=&#34;http://ns.adobe.com/mxml/2009&#34;
        xmlns:s=&#34;library://ns.adobe.com/flex/spark&#34;
        xmlns:mx=&#34;library://ns.adobe.com/flex/mx&#34;&#62;
  [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2010/03/09/creating-a-drop-down-datagrid-control-in-flex-4/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Setting the slide duration on a Spark HScrollBar control in Flex 4</title>
		<link>http://blog.flexexamples.com/2010/02/28/setting-the-slide-duration-on-a-spark-hscrollbar-control-in-flex-4/</link>
		<comments>http://blog.flexexamples.com/2010/02/28/setting-the-slide-duration-on-a-spark-hscrollbar-control-in-flex-4/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 06:33:37 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[HScrollBar (Spark)]]></category>
		<category><![CDATA[List (Spark)]]></category>
		<category><![CDATA[Scroller (Spark)]]></category>
		<category><![CDATA[VScrollBar (Spark)]]></category>
		<category><![CDATA[beta2]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[slideDuration]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/?p=2545</guid>
		<description><![CDATA[In a previous example, &#8220;Setting the slide duration on a Spark HSlider control in Flex 4&#8243;, we saw how you could set the slide duration on a Spark HSlider control in Flex 4 by setting the slideDuration style.
The following example shows how you can set the slide duration on a Spark HScrollBar control in Flex [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2010/02/28/setting-the-slide-duration-on-a-spark-hscrollbar-control-in-flex-4/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Preventing the selected item highlighting in the Spark List control in Flex 4</title>
		<link>http://blog.flexexamples.com/2010/02/25/preventing-the-selected-item-highlighting-in-the-spark-list-control-in-flex-4/</link>
		<comments>http://blog.flexexamples.com/2010/02/25/preventing-the-selected-item-highlighting-in-the-spark-list-control-in-flex-4/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 19:50:03 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[List (Spark)]]></category>
		<category><![CDATA[beta2]]></category>
		<category><![CDATA[autoDrawBackground]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[itemRenderer]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/?p=2526</guid>
		<description><![CDATA[In a previous example, &#8220;Preventing item selection in the Spark List control in Flex 4&#8243;, we saw how you can prevent item selection in the Spark List control in Flex 4 by listening for the changing event and calling the preventDefault() method on the IndexChangeEvent event object instance.
The following example shows how you can keep [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2010/02/25/preventing-the-selected-item-highlighting-in-the-spark-list-control-in-flex-4/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Preventing item selection in the Spark List control in Flex 4</title>
		<link>http://blog.flexexamples.com/2010/02/25/preventing-item-selection-in-the-spark-list-control-in-flex-4/</link>
		<comments>http://blog.flexexamples.com/2010/02/25/preventing-item-selection-in-the-spark-list-control-in-flex-4/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 19:28:14 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[List (Spark)]]></category>
		<category><![CDATA[beta2]]></category>
		<category><![CDATA[changing]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[preventDefault()]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/?p=2523</guid>
		<description><![CDATA[The following example shows how you can prevent item selection in the Spark List control in Flex 4 by listening for the changing event and calling the preventDefault() method on the IndexChangeEvent event object instance.


&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;!-- http://blog.flexexamples.com/2010/02/25/preventing-item-selection-in-the-spark-list-control-in-flex-4/ --&#62;
&#60;s:Application name=&#34;Spark_List_changing_test&#34;
        xmlns:fx=&#34;http://ns.adobe.com/mxml/2009&#34; 
       [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2010/02/25/preventing-item-selection-in-the-spark-list-control-in-flex-4/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using embedded fonts with the MX AdvancedDataGrid control in Flex 4</title>
		<link>http://blog.flexexamples.com/2010/02/24/using-embedded-fonts-with-the-mx-advanceddatagrid-control-in-flex-4/</link>
		<comments>http://blog.flexexamples.com/2010/02/24/using-embedded-fonts-with-the-mx-advanceddatagrid-control-in-flex-4/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 09:10:21 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[beta2]]></category>
		<category><![CDATA[embedAsCFF]]></category>
		<category><![CDATA[fontFamily]]></category>
		<category><![CDATA[Gumbo]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/?p=2519</guid>
		<description><![CDATA[The following example shows how you can use an embedded font with the MX AdvancedDataGrid control in Flex 4 by setting the embedAsCFF and fontFamily styles.


&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;!-- http://blog.flexexamples.com/2010/02/24/using-embedded-fonts-with-the-mx-advanceddatagrid-control-in-flex-4/ --&#62;
&#60;s:Application name=&#34;MX_AdvancedDataGrid_fontFamily_test&#34;
        xmlns:fx=&#34;http://ns.adobe.com/mxml/2009&#34;
        xmlns:s=&#34;library://ns.adobe.com/flex/spark&#34;
        xmlns:mx=&#34;library://ns.adobe.com/flex/mx&#34;&#62;
&#160;
 [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2010/02/24/using-embedded-fonts-with-the-mx-advanceddatagrid-control-in-flex-4/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Setting the font weight on the MX Legend control in Flex 4</title>
		<link>http://blog.flexexamples.com/2010/02/23/setting-the-font-weight-on-the-mx-legend-control-in-flex-4/</link>
		<comments>http://blog.flexexamples.com/2010/02/23/setting-the-font-weight-on-the-mx-legend-control-in-flex-4/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 07:08:41 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[Charting]]></category>
		<category><![CDATA[Legend]]></category>
		<category><![CDATA[LegendItem]]></category>
		<category><![CDATA[PieChart]]></category>
		<category><![CDATA[beta2]]></category>
		<category><![CDATA[fontWeight]]></category>
		<category><![CDATA[Gumbo]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/?p=2511</guid>
		<description><![CDATA[In a previous example, &#8220;Setting the font weight on a charting Legend control in Flex&#8221;, we saw how you could set the font weight of a Flex Charting Legend control by setting the fontWeight style on the LegendItem CSS selector.
The following example shows how you can set the font weight of an MX Legend control [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2010/02/23/setting-the-font-weight-on-the-mx-legend-control-in-flex-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Listening for a click on the MX MenuBar control in Flex</title>
		<link>http://blog.flexexamples.com/2010/02/19/listening-for-a-click-on-the-mx-menubar-control-in-flex/</link>
		<comments>http://blog.flexexamples.com/2010/02/19/listening-for-a-click-on-the-mx-menubar-control-in-flex/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 02:16:51 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[MenuBar]]></category>
		<category><![CDATA[beta2]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[MenuBarItem]]></category>
		<category><![CDATA[menuBarItems]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/?p=2505</guid>
		<description><![CDATA[The following example shows how you can detect a click on the MX MenuBar control in Flex by using the menuBarItems array and adding an event listener for the click event to a specific MenuBarItem.


&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;!-- http://blog.flexexamples.com/2010/02/19/listening-for-a-click-on-the-mx-menubar-control-in-flex/ --&#62;
&#60;s:Application name=&#34;MenuBar_menuBarItems_addEventListener_test&#34;
        xmlns:fx=&#34;http://ns.adobe.com/mxml/2009&#34;
        [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2010/02/19/listening-for-a-click-on-the-mx-menubar-control-in-flex/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Setting a variable row height on an MX MenuBar control in Flex</title>
		<link>http://blog.flexexamples.com/2010/02/19/setting-a-variable-row-height-on-an-mx-menubar-control-in-flex/</link>
		<comments>http://blog.flexexamples.com/2010/02/19/setting-a-variable-row-height-on-an-mx-menubar-control-in-flex/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 01:54:34 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[Menu]]></category>
		<category><![CDATA[MenuBar]]></category>
		<category><![CDATA[beta2]]></category>
		<category><![CDATA[Gumbo]]></category>
		<category><![CDATA[invalidateSize()]]></category>
		<category><![CDATA[menuShow]]></category>
		<category><![CDATA[variableRowHeight]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/?p=2502</guid>
		<description><![CDATA[The following example shows how you can set a variable row height on an MX MenuBar control in Flex by listening for the menuShow event, setting the Boolean variableRowHeight property on the MenuEvent object&#8217;s menu property, and then calling the invalidateSize() method.


&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;!-- http://blog.flexexamples.com/2010/02/19/setting-a-variable-row-height-on-an-mx-menubar-control-in-flex/ --&#62;
&#60;mx:Application name=&#34;MenuBar_menuShow_menu_variableRowHeight_test&#34;
        xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34;
 [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2010/02/19/setting-a-variable-row-height-on-an-mx-menubar-control-in-flex/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
