<?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; Panel</title>
	<atom:link href="http://blog.flexexamples.com/category/halo/panel/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 07:26:24 +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>Smoothing the background fill on an MX Panel container in Flex 3</title>
		<link>http://blog.flexexamples.com/2010/03/15/smoothing-the-background-fill-on-an-mx-panel-container-in-flex-3/</link>
		<comments>http://blog.flexexamples.com/2010/03/15/smoothing-the-background-fill-on-an-mx-panel-container-in-flex-3/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 01:34:36 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[Embed]]></category>
		<category><![CDATA[Panel]]></category>
		<category><![CDATA[backgroundImage]]></category>
		<category><![CDATA[backgroundSize]]></category>
		<category><![CDATA[BitmapAsset]]></category>
		<category><![CDATA[smoothing]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/?p=2601</guid>
		<description><![CDATA[The following example shows how you can apply smoothing to a background image fill on an MX Panel container in Flex 3 by extending the BitmapAsset class, setting the Boolean smoothing property, and setting the backgroundImage and backgroundSize styles.


&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;!-- http://blog.flexexamples.com/2010/03/15/smoothing-the-background-fill-on-an-mx-panel-container-in-flex-3/ --&#62;
&#60;mx:Application name=&#34;Embed_smoothing_test&#34;
        xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34;
    [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2010/03/15/smoothing-the-background-fill-on-an-mx-panel-container-in-flex-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting a control bar background image fill on a Halo Panel control in Flex 4</title>
		<link>http://blog.flexexamples.com/2009/07/08/setting-a-control-bar-background-image-fill-on-a-halo-panel-control-in-flex-4/</link>
		<comments>http://blog.flexexamples.com/2009/07/08/setting-a-control-bar-background-image-fill-on-a-halo-panel-control-in-flex-4/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 06:59:06 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[Panel]]></category>
		<category><![CDATA[beta1]]></category>
		<category><![CDATA[borderSkin]]></category>
		<category><![CDATA[Gumbo]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/?p=1469</guid>
		<description><![CDATA[The following example shows how you can set the control bar background image fill on a Halo Panel control (with default Spark skin) in Flex 4 by setting the borderSkin 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/08/setting-a-control-bar-background-image-fill-on-a-halo-panel-control-in-flex-4/ --&#62;
&#60;s:Application name=&#34;Halo_Panel_borderSkin_test&#34;
        xmlns:fx=&#34;http://ns.adobe.com/mxml/2009&#34;
        [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2009/07/08/setting-a-control-bar-background-image-fill-on-a-halo-panel-control-in-flex-4/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Toggling the drop shadow on a Panel container in Flex</title>
		<link>http://blog.flexexamples.com/2008/10/19/toggling-the-drop-shadow-on-a-panel-container-in-flex/</link>
		<comments>http://blog.flexexamples.com/2008/10/19/toggling-the-drop-shadow-on-a-panel-container-in-flex/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 05:25:02 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[Panel]]></category>
		<category><![CDATA[dropShadowEnabled]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/19/toggling-the-drop-shadow-on-a-panel-container-in-flex/</guid>
		<description><![CDATA[The following example shows how you can toggle the drop shadow on a Flex Panel container by setting the dropShadowEnabled style.
Full code after the jump.

View MXML

&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;!-- http://blog.flexexamples.com/2008/10/19/toggling-the-drop-shadow-on-a-panel-container-in-flex/ --&#62;
&#60;mx:Application name=&#34;Panel_dropShadowEnabled_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/2008/10/19/toggling-the-drop-shadow-on-a-panel-container-in-flex/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adding a title icon to a Panel container in Flex</title>
		<link>http://blog.flexexamples.com/2008/10/18/adding-a-title-icon-to-a-panel-container-in-flex/</link>
		<comments>http://blog.flexexamples.com/2008/10/18/adding-a-title-icon-to-a-panel-container-in-flex/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 06:11:56 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[Panel]]></category>
		<category><![CDATA[titleIcon]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/18/adding-a-title-icon-to-a-panel-container-in-flex/</guid>
		<description><![CDATA[The following example shows how you can add an icon to a Flex Panel container&#8217;s title bar by setting the titleIcon property.
Full code after the jump.

View MXML

&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;!-- http://blog.flexexamples.com/2008/10/18/adding-a-title-icon-to-a-panel-container-in-flex/ --&#62;
&#60;mx:Application name=&#34;Panel_titleIcon_test&#34;
        xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34;
        layout=&#34;vertical&#34;
        [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2008/10/18/adding-a-title-icon-to-a-panel-container-in-flex/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Adding links to a Panel container&#8217;s status text in Flex</title>
		<link>http://blog.flexexamples.com/2008/04/17/adding-links-to-a-panel-containers-status-text-in-flex/</link>
		<comments>http://blog.flexexamples.com/2008/04/17/adding-links-to-a-panel-containers-status-text-in-flex/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 02:13:27 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[Panel]]></category>
		<category><![CDATA[TextEvent]]></category>
		<category><![CDATA[getStatusTextField()]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[mx internal]]></category>
		<category><![CDATA[selectable]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/2008/04/17/adding-links-to-a-panel-containers-status-text-in-flex/</guid>
		<description><![CDATA[The following example shows how you can assign an HTML formatted string to a Panel container&#8217;s status text field using the getStatusTextField() method in the mx_internal namespace.
Full code after the jump.

Since this example uses the mx_internal namespace, you can&#8217;t always depend on this behavior to work in future versions of the Flex SDK. Use at [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2008/04/17/adding-links-to-a-panel-containers-status-text-in-flex/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Setting the background alpha on a Panel container in Flex</title>
		<link>http://blog.flexexamples.com/2008/03/12/setting-the-background-alpha-on-a-panel-container-in-flex/</link>
		<comments>http://blog.flexexamples.com/2008/03/12/setting-the-background-alpha-on-a-panel-container-in-flex/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 03:25:43 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[Panel]]></category>
		<category><![CDATA[backgroundAlpha]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/2008/03/12/setting-the-background-alpha-on-a-panel-container-in-flex/</guid>
		<description><![CDATA[In a previous example, &#8220;Setting the border alpha on a Panel container in Flex&#8221;, we saw how you could change a panel&#8217;s border alpha by setting the borderAlpha style.
The following example shows how you can set the background alpha on a Flex Panel container by setting the backgroundAlpha style.
Full code after the jump.

View MXML

&#60;?xml version="1.0" [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2008/03/12/setting-the-background-alpha-on-a-panel-container-in-flex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting the border alpha on a Panel container in Flex</title>
		<link>http://blog.flexexamples.com/2008/03/12/setting-the-border-alpha-on-a-panel-container-in-flex/</link>
		<comments>http://blog.flexexamples.com/2008/03/12/setting-the-border-alpha-on-a-panel-container-in-flex/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 02:17:37 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[Panel]]></category>
		<category><![CDATA[borderAlpha]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/2008/03/12/setting-the-border-alpha-on-a-panel-container-in-flex/</guid>
		<description><![CDATA[The following example shows how you can set the border alpha on a Flex Panel container by setting the borderAlpha style.
Full code after the jump.

View MXML

&#60;?xml version="1.0" encoding="utf-8"?&#62;
&#60;!-- http://blog.flexexamples.com/2008/03/12/setting-the-border-alpha-on-a-panel-container-in-flex/ --&#62;
&#60;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical"
        verticalAlign="middle"
        creationComplete="init();"&#62;

 [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2008/03/12/setting-the-border-alpha-on-a-panel-container-in-flex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using embedded fonts with the Panel container in Flex</title>
		<link>http://blog.flexexamples.com/2008/02/28/using-embedded-fonts-with-the-panel-container-in-flex/</link>
		<comments>http://blog.flexexamples.com/2008/02/28/using-embedded-fonts-with-the-panel-container-in-flex/#comments</comments>
		<pubDate>Fri, 29 Feb 2008 05:32:07 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[Embed]]></category>
		<category><![CDATA[Panel]]></category>
		<category><![CDATA[fontFamily]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/2008/02/28/using-embedded-fonts-with-the-panel-container-in-flex/</guid>
		<description><![CDATA[The following example shows how you can use an embedded font with the Flex Panel container so that a Panel container can be rotated or faded without the text &#8220;disappearing&#8221;. The trick here is to set the panel&#8217;s titleStyleName style to a custom style which sets the font family to the embedded font.
Full code after [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2008/02/28/using-embedded-fonts-with-the-panel-container-in-flex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Indenting a Flex Panel control&#8217;s title</title>
		<link>http://blog.flexexamples.com/2008/01/14/indenting-a-flex-panel-controls-title/</link>
		<comments>http://blog.flexexamples.com/2008/01/14/indenting-a-flex-panel-controls-title/#comments</comments>
		<pubDate>Tue, 15 Jan 2008 02:56:42 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[Panel]]></category>
		<category><![CDATA[textIndent]]></category>
		<category><![CDATA[titleStyleName]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/2008/01/14/indenting-a-flex-panel-controls-title/</guid>
		<description><![CDATA[The following example shows how you can indent the title of a Panel control in Flex by setting the titleStyleName style and textIndent style.
Full code after the jump.

View MXML

&#60;?xml version="1.0" encoding="utf-8"?&#62;
&#60;!-- http://blog.flexexamples.com/2008/01/14/indenting-a-flex-panel-controls-title/ --&#62;
&#60;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical"
        verticalAlign="middle"
      [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2008/01/14/indenting-a-flex-panel-controls-title/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting the child layout direction of a Flex Panel container</title>
		<link>http://blog.flexexamples.com/2008/01/13/setting-the-child-layout-direction-of-a-flex-panel-container/</link>
		<comments>http://blog.flexexamples.com/2008/01/13/setting-the-child-layout-direction-of-a-flex-panel-container/#comments</comments>
		<pubDate>Sun, 13 Jan 2008 18:21:20 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[Panel]]></category>
		<category><![CDATA[layout]]></category>

		<guid isPermaLink="false">http://blog.flexexamples.com/2008/01/13/setting-the-child-layout-direction-of-a-flex-panel-container/</guid>
		<description><![CDATA[The following example shows how you can set a Panel container&#8217;s layout to horizontal or vertical in Flex by setting the layout property.
You can also set the Panel container&#8217;s layout to &#8220;absolute&#8221;. For an example, see &#8220;Setting the border thickness in a Flex Panel container&#8221;.
Full code after the jump.

View MXML

&#60;?xml version="1.0" encoding="utf-8"?&#62;
&#60;!-- http://blog.flexexamples.com/2008/01/13/setting-the-child-layout-direction-of-a-flex-panel-container/ --&#62;
&#60;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
 [...]]]></description>
		<wfw:commentRss>http://blog.flexexamples.com/2008/01/13/setting-the-child-layout-direction-of-a-flex-panel-container/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
