<?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: Changing the title bar background fill on a Spark Panel container in Flex Gumbo</title>
	<atom:link href="http://blog.flexexamples.com/2009/05/02/changing-the-title-bar-background-fill-on-a-spark-panel-container-in-flex-gumbo/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2009/05/02/changing-the-title-bar-background-fill-on-a-spark-panel-container-in-flex-gumbo/</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: anony</title>
		<link>http://blog.flexexamples.com/2009/05/02/changing-the-title-bar-background-fill-on-a-spark-panel-container-in-flex-gumbo/comment-page-1/#comment-7097</link>
		<dc:creator>anony</dc:creator>
		<pubDate>Wed, 24 Feb 2010 14:33:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2009/05/02/changing-the-title-bar-background-fill-on-a-spark-panel-container-in-flex-gumbo/#comment-7097</guid>
		<description>&lt;s:Label id=&quot;titleDisplay&quot; maxDisplayedLines=&quot;1&quot;
                         left=&quot;9&quot; right=&quot;3&quot; top=&quot;1&quot; bottom=&quot;0&quot; minHeight=&quot;30&quot;
                         verticalAlign=&quot;middle&quot; fontWeight=&quot;bold&quot;&gt;
                &lt;/s:Label&gt;</description>
		<content:encoded><![CDATA[<p>&lt;s:Label id=&#8221;titleDisplay&#8221; maxDisplayedLines=&#8221;1&#8243;<br />
                         left=&#8221;9&#8243; right=&#8221;3&#8243; top=&#8221;1&#8243; bottom=&#8221;0&#8243; minHeight=&#8221;30&#8243;<br />
                         verticalAlign=&#8221;middle&#8221; fontWeight=&#8221;bold&#8221;&gt;<br />
                &lt;/s:Label&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anony</title>
		<link>http://blog.flexexamples.com/2009/05/02/changing-the-title-bar-background-fill-on-a-spark-panel-container-in-flex-gumbo/comment-page-1/#comment-7096</link>
		<dc:creator>anony</dc:creator>
		<pubDate>Wed, 24 Feb 2010 14:32:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2009/05/02/changing-the-title-bar-background-fill-on-a-spark-panel-container-in-flex-gumbo/#comment-7096</guid>
		<description>in the cutom skin you have to upddate the simple text component
 to:

            
                </description>
		<content:encoded><![CDATA[<p>in the cutom skin you have to upddate the simple text component<br />
 to:</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: irabbit</title>
		<link>http://blog.flexexamples.com/2009/05/02/changing-the-title-bar-background-fill-on-a-spark-panel-container-in-flex-gumbo/comment-page-1/#comment-4634</link>
		<dc:creator>irabbit</dc:creator>
		<pubDate>Mon, 20 Jul 2009 07:11:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2009/05/02/changing-the-title-bar-background-fill-on-a-spark-panel-container-in-flex-gumbo/#comment-4634</guid>
		<description>Hi Peter.
I think it is ok if we use Halo Panel Class in Flex 4. But what happen if i use draggable Spark Panel in flex 4. 
In flex 4 docs, i found that: Starting with Flex 4.0, Adobe recommends that you use the spark.components.Panel class as an alternative to this class.
&lt;code&gt;

        
    
&lt;code&gt;</description>
		<content:encoded><![CDATA[<p>Hi Peter.<br />
I think it is ok if we use Halo Panel Class in Flex 4. But what happen if i use draggable Spark Panel in flex 4.<br />
In flex 4 docs, i found that: Starting with Flex 4.0, Adobe recommends that you use the spark.components.Panel class as an alternative to this class.<br />
<code></p>
<p></code><code></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter deHaan</title>
		<link>http://blog.flexexamples.com/2009/05/02/changing-the-title-bar-background-fill-on-a-spark-panel-container-in-flex-gumbo/comment-page-1/#comment-4579</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Thu, 16 Jul 2009 06:52:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2009/05/02/changing-the-title-bar-background-fill-on-a-spark-panel-container-in-flex-gumbo/#comment-4579</guid>
		<description>irabbit,

I haven&#039;t played around with the &lt;code&gt;isPopUp&lt;/code&gt; property much, but this seems to create a draggable Halo Panel container in Flex 4:
&lt;pre lang=&quot;mxml&quot;&gt;
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;s:Application xmlns:fx=&quot;http://ns.adobe.com/mxml/2009&quot;
        xmlns:s=&quot;library://ns.adobe.com/flex/spark&quot;
        xmlns:mx=&quot;library://ns.adobe.com/flex/halo&quot;&gt;

    &lt;mx:Panel id=&quot;pnl&quot;
            width=&quot;400&quot; height=&quot;300&quot;
            horizontalCenter=&quot;0&quot; verticalCenter=&quot;0&quot;
            creationComplete=&quot;pnl.isPopUp = true;&quot;&gt;
        &lt;mx:Button label=&quot;Halo Button&quot; /&gt;
    &lt;/mx:Panel&gt;

&lt;/s:Application&gt;
&lt;/pre&gt;

How is your code different?

Peter
(ps: If you&#039;re going to paste raw MXML code in this blog, you may need to escape your tags. For example, replace your &lt; with &lt; and your &gt; with &gt;)</description>
		<content:encoded><![CDATA[<p>irabbit,</p>
<p>I haven&#8217;t played around with the <code>isPopUp</code> property much, but this seems to create a draggable Halo Panel container in Flex 4:</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;s:Application</span> xmlns:fx=<span style="color: #ff0000;">&quot;http://ns.adobe.com/mxml/2009&quot;</span></span>
<span style="color: #000000;">        xmlns:s=<span style="color: #ff0000;">&quot;library://ns.adobe.com/flex/spark&quot;</span></span>
<span style="color: #000000;">        xmlns:mx=<span style="color: #ff0000;">&quot;library://ns.adobe.com/flex/halo&quot;</span><span style="color: #7400FF;">&gt;</span></span>
&nbsp;
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Panel</span> id=<span style="color: #ff0000;">&quot;pnl&quot;</span></span>
<span style="color: #000000;">            width=<span style="color: #ff0000;">&quot;400&quot;</span> height=<span style="color: #ff0000;">&quot;300&quot;</span></span>
<span style="color: #000000;">            horizontalCenter=<span style="color: #ff0000;">&quot;0&quot;</span> verticalCenter=<span style="color: #ff0000;">&quot;0&quot;</span></span>
<span style="color: #000000;">            creationComplete=<span style="color: #ff0000;">&quot;pnl.isPopUp = true;&quot;</span><span style="color: #7400FF;">&gt;</span></span>
        <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Button</span> label=<span style="color: #ff0000;">&quot;Halo Button&quot;</span> <span style="color: #7400FF;">/&gt;</span></span>
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:Panel</span><span style="color: #7400FF;">&gt;</span></span>
&nbsp;
<span style="color: #000000;"><span style="color: #7400FF;">&lt;/s:Application</span><span style="color: #7400FF;">&gt;</span></span></pre></div></div>

<p>How is your code different?</p>
<p>Peter<br />
(ps: If you&#8217;re going to paste raw MXML code in this blog, you may need to escape your tags. For example, replace your &lt; with &amp;lt; and your &gt; with &amp;gt;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter deHaan</title>
		<link>http://blog.flexexamples.com/2009/05/02/changing-the-title-bar-background-fill-on-a-spark-panel-container-in-flex-gumbo/comment-page-1/#comment-4578</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Thu, 16 Jul 2009 06:48:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2009/05/02/changing-the-title-bar-background-fill-on-a-spark-panel-container-in-flex-gumbo/#comment-4578</guid>
		<description>irabbit,
Assuming you are using the Halo panel still (and not the new Spark Panel container), you can switch back to the Halo theme by adding this compiler argument to your Flex compiler settings:
&lt;pre lang=&quot;text&quot;&gt;
-theme=${flexlib}/themes/Halo/halo.swc
&lt;/pre&gt;

For more information, see &lt;a href=&quot;http://blog.flexexamples.com/2009/07/14/using-the-halo-theme-in-flex-4/&quot; rel=&quot;nofollow&quot;&gt;&quot;Using the Halo theme in Flex 4&quot;&lt;/a&gt;.

Peter</description>
		<content:encoded><![CDATA[<p>irabbit,<br />
Assuming you are using the Halo panel still (and not the new Spark Panel container), you can switch back to the Halo theme by adding this compiler argument to your Flex compiler settings:</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">-theme=${flexlib}/themes/Halo/halo.swc</pre></div></div>

<p>For more information, see <a href="http://blog.flexexamples.com/2009/07/14/using-the-halo-theme-in-flex-4/" rel="nofollow">&#8220;Using the Halo theme in Flex 4&#8243;</a>.</p>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: irabbit</title>
		<link>http://blog.flexexamples.com/2009/05/02/changing-the-title-bar-background-fill-on-a-spark-panel-container-in-flex-gumbo/comment-page-1/#comment-4576</link>
		<dc:creator>irabbit</dc:creator>
		<pubDate>Thu, 16 Jul 2009 03:14:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2009/05/02/changing-the-title-bar-background-fill-on-a-spark-panel-container-in-flex-gumbo/#comment-4576</guid>
		<description>Another question, how to i make panel can drap? In flex 3, we just set isPopup property to true. But in flex 4 i can not drag it although i set its value to true.</description>
		<content:encoded><![CDATA[<p>Another question, how to i make panel can drap? In flex 3, we just set isPopup property to true. But in flex 4 i can not drag it although i set its value to true.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: irabbit</title>
		<link>http://blog.flexexamples.com/2009/05/02/changing-the-title-bar-background-fill-on-a-spark-panel-container-in-flex-gumbo/comment-page-1/#comment-4575</link>
		<dc:creator>irabbit</dc:creator>
		<pubDate>Thu, 16 Jul 2009 03:05:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2009/05/02/changing-the-title-bar-background-fill-on-a-spark-panel-container-in-flex-gumbo/#comment-4575</guid>
		<description>In flex 3, i create custom panel class that is the same with window in window os: icon, title, minimize, maximize, and close button. In flex 4, the Panel class need skin to change its default skin. How do i do it in flex 4?</description>
		<content:encoded><![CDATA[<p>In flex 3, i create custom panel class that is the same with window in window os: icon, title, minimize, maximize, and close button. In flex 4, the Panel class need skin to change its default skin. How do i do it in flex 4?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

