<?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: Using the TitleWindow container to display status messages</title>
	<atom:link href="http://blog.flexexamples.com/2007/08/22/using-the-titlewindow-container-to-display-status-messages/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2007/08/22/using-the-titlewindow-container-to-display-status-messages/</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Mon, 15 Mar 2010 09:06:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: John C. Bland II</title>
		<link>http://blog.flexexamples.com/2007/08/22/using-the-titlewindow-container-to-display-status-messages/comment-page-1/#comment-778</link>
		<dc:creator>John C. Bland II</dc:creator>
		<pubDate>Fri, 24 Aug 2007 03:38:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/08/22/using-the-titlewindow-container-to-display-status-messages/#comment-778</guid>
		<description>I agree with Borek...very clever! I would&#039;ve never thought about using a TitleWindow. Nice!</description>
		<content:encoded><![CDATA[<p>I agree with Borek&#8230;very clever! I would&#8217;ve never thought about using a TitleWindow. Nice!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob McKeown</title>
		<link>http://blog.flexexamples.com/2007/08/22/using-the-titlewindow-container-to-display-status-messages/comment-page-1/#comment-780</link>
		<dc:creator>Rob McKeown</dc:creator>
		<pubDate>Thu, 23 Aug 2007 16:57:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/08/22/using-the-titlewindow-container-to-display-status-messages/#comment-780</guid>
		<description>Here is an example of how you could make it fade in/out. You would need to embed the font used in the error message for the text to fade with the box.

&lt;pre class=&quot;code&quot;&gt;
...
import mx.effects.Fade;
import mx.events.EffectEvent;

            private function showTitleWindow():void {
                titleWindow.height = 28;
                var fade:Fade = new mx.effects.Fade();
                fade.alphaFrom = 0;
                fade.alphaTo = 1;
                fade.target = titleWindow;

                fade.play();
            }

            private function hideTitleWindow():void {
                var fade:Fade = new mx.effects.Fade();
                fade.alphaFrom = 1;
                fade.alphaTo = 0;
                fade.target = titleWindow;
                fade.addEventListener(EffectEvent.EFFECT_END, function(event:EffectEvent) : void {
                titleWindow.height = 0;
});
                fade.play();
           }
...
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Here is an example of how you could make it fade in/out. You would need to embed the font used in the error message for the text to fade with the box.</p>
<pre class="code">
...
import mx.effects.Fade;
import mx.events.EffectEvent;

            private function showTitleWindow():void {
                titleWindow.height = 28;
                var fade:Fade = new mx.effects.Fade();
                fade.alphaFrom = 0;
                fade.alphaTo = 1;
                fade.target = titleWindow;

                fade.play();
            }

            private function hideTitleWindow():void {
                var fade:Fade = new mx.effects.Fade();
                fade.alphaFrom = 1;
                fade.alphaTo = 0;
                fade.target = titleWindow;
                fade.addEventListener(EffectEvent.EFFECT_END, function(event:EffectEvent) : void {
                titleWindow.height = 0;
});
                fade.play();
           }
...
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Borek</title>
		<link>http://blog.flexexamples.com/2007/08/22/using-the-titlewindow-container-to-display-status-messages/comment-page-1/#comment-779</link>
		<dc:creator>Borek</dc:creator>
		<pubDate>Thu, 23 Aug 2007 15:51:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/08/22/using-the-titlewindow-container-to-display-status-messages/#comment-779</guid>
		<description>To use a TitleWindow is clever idea! I&#039;m pretty much looking forward to seeing your solution to neat transition effects - it took me many hours to figure out how to correctly implement our internal VBoxWithMessage component that does exactly the same thing.</description>
		<content:encoded><![CDATA[<p>To use a TitleWindow is clever idea! I&#8217;m pretty much looking forward to seeing your solution to neat transition effects &#8211; it took me many hours to figure out how to correctly implement our internal VBoxWithMessage component that does exactly the same thing.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
