<?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: AIR AlertWindow Component (Toast Style)</title>
	<atom:link href="http://blog.everythingflex.com/2007/12/17/air-alertwindow-component-toast-style/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.everythingflex.com/2007/12/17/air-alertwindow-component-toast-style/</link>
	<description>News and Information about Adobe Flex &#38; Adobe AIR by Rich Tretola</description>
	<lastBuildDate>Wed, 28 Dec 2011 05:30:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
	<item>
		<title>By: RubyHY29</title>
		<link>http://blog.everythingflex.com/2007/12/17/air-alertwindow-component-toast-style/comment-page-1/#comment-57622</link>
		<dc:creator>RubyHY29</dc:creator>
		<pubDate>Thu, 24 Dec 2009 20:59:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.everythingflex.com/2007/12/17/air-alertwindow-component-toast-style/#comment-57622</guid>
		<description>A text just about this post is released by essay writing to have a chance to &lt;a href=&quot;http://www.essayslab.com&quot; rel=&quot;nofollow&quot;&gt;buy an essay&lt;/a&gt; and custom papers.</description>
		<content:encoded><![CDATA[<p>A text just about this post is released by essay writing to have a chance to <a href="http://www.essayslab.com" rel="nofollow">buy an essay</a> and custom papers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stevie</title>
		<link>http://blog.everythingflex.com/2007/12/17/air-alertwindow-component-toast-style/comment-page-1/#comment-38752</link>
		<dc:creator>stevie</dc:creator>
		<pubDate>Sat, 17 Jan 2009 20:56:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.everythingflex.com/2007/12/17/air-alertwindow-component-toast-style/#comment-38752</guid>
		<description>yep
this.setStyle(&#039;showFlexChrome&#039;,false);</description>
		<content:encoded><![CDATA[<p>yep<br />
this.setStyle(&#8216;showFlexChrome&#8217;,false);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CRitter</title>
		<link>http://blog.everythingflex.com/2007/12/17/air-alertwindow-component-toast-style/comment-page-1/#comment-537</link>
		<dc:creator>CRitter</dc:creator>
		<pubDate>Tue, 05 Feb 2008 22:04:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.everythingflex.com/2007/12/17/air-alertwindow-component-toast-style/#comment-537</guid>
		<description>any way to make these windows with no chrome? flex or system?</description>
		<content:encoded><![CDATA[<p>any way to make these windows with no chrome? flex or system?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: everythingflex</title>
		<link>http://blog.everythingflex.com/2007/12/17/air-alertwindow-component-toast-style/comment-page-1/#comment-536</link>
		<dc:creator>everythingflex</dc:creator>
		<pubDate>Tue, 18 Dec 2007 11:25:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.everythingflex.com/2007/12/17/air-alertwindow-component-toast-style/#comment-536</guid>
		<description>Here it is:
http://blog.everythingflex.com/2007/12/18/air-alertmxwindow-component-toast-style/</description>
		<content:encoded><![CDATA[<p>Here it is:<br />
<a href="http://blog.everythingflex.com/2007/12/18/air-alertmxwindow-component-toast-style/" rel="nofollow">http://blog.everythingflex.com/2007/12/18/air-alertmxwindow-component-toast-style/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Theo</title>
		<link>http://blog.everythingflex.com/2007/12/17/air-alertwindow-component-toast-style/comment-page-1/#comment-535</link>
		<dc:creator>Theo</dc:creator>
		<pubDate>Tue, 18 Dec 2007 02:09:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.everythingflex.com/2007/12/17/air-alertwindow-component-toast-style/#comment-535</guid>
		<description>OK This is how far I got with using the Window component;

&lt;code lang=&quot;ActionScript&quot;&gt;
package
{
	import flash.display.NativeWindowSystemChrome;
	import flash.display.NativeWindowType;
	import flash.events.*;
	import flash.utils.Timer;

	import mx.containers.Canvas;
	import mx.controls.Button;
	import mx.controls.TextArea;
	import mx.core.Window;
	import mx.events.FlexEvent;

	public class AlertWin extends Window
	{
		private var _showTimer:Timer;
		private var _delayTimer:Timer;
		private var _hideTimer:Timer;

		private var _delayTime:int;
		private var _message:String;
		private var _width:int;
		private var _height:int;

		private var _systemChrome:NativeWindowSystemChrome;
		private var _windowType:NativeWindowType

		public function AlertWin() {
			this.maximizable = false;
			this.resizable = false;
			this.minimizable = false;

			// alternate, none, standard, utility
			this.systemChrome = &quot;none&quot;;

			// lightweight, normal, utility
			this.type = &quot;lightweight&quot;

			this.addEventListener(FlexEvent.CREATION_COMPLETE, completeHandler);
		}

		public function completeHandler(event:FlexEvent):void {
			this.nativeWindow.x = flash.display.Screen.mainScreen.bounds.width - (this.width + 20);
			this.nativeWindow.y = flash.display.Screen.mainScreen.bounds.height - 20;

			this.horizontalScrollPolicy = &quot;off&quot;;
			this.verticalScrollPolicy = &quot;off&quot;;

			_showTimer = new Timer(10,0);
			_showTimer.addEventListener(&quot;timer&quot;, showTimerHandler);
			_showTimer.start();
		}

		public function show(message:String, title:String = &quot;&quot;, delayTime:int=2, width:int=200, height:int=150): void {
			_delayTime = delayTime;

  			this.width = width;
   			this.height = height;

			var cnv:Canvas = new Canvas();
			cnv.width = width;
			cnv.height = height;
			cnv.horizontalScrollPolicy = &quot;off&quot;;
			cnv.verticalScrollPolicy = &quot;off&quot;;

			var ta:TextArea = new TextArea();
			ta.text = message;
			ta.width = width;
			ta.height = height;

			var btn:Button = new Button();
			btn.label = &quot;My Message&quot;;
			btn.setStyle(&quot;right&quot;, &quot;5&quot;);
			btn.setStyle(&quot;bottom&quot;, &quot;45&quot;);

			cnv.addChild(ta);
			cnv.addChild(btn);

			this.addChild(cnv);

			this.open();
		}

		private function showTimerHandler(event:TimerEvent):void {
			this.nativeWindow.y -= 10;

			if(this.nativeWindow.y = (flash.display.Screen.mainScreen.bounds.height-20)){
					this.close();
					_hideTimer.stop();
                }
            } else {
            	_hideTimer.stop();
            }
		}
	}
}
&lt;/code&gt;

Thanks Guys! I got a bit more to do with this class but I can see the light at the end of the tunnel now. I want to completely remove the chrome and use a simple border.

Thanks again. I&#039;ll keep looking here to see if you got any improvements that could be made.</description>
		<content:encoded><![CDATA[<p>OK This is how far I got with using the Window component;</p>
<div class="codecolorer-container actionscript dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:300px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br />29<br />30<br />31<br />32<br />33<br />34<br />35<br />36<br />37<br />38<br />39<br />40<br />41<br />42<br />43<br />44<br />45<br />46<br />47<br />48<br />49<br />50<br />51<br />52<br />53<br />54<br />55<br />56<br />57<br />58<br />59<br />60<br />61<br />62<br />63<br />64<br />65<br />66<br />67<br />68<br />69<br />70<br />71<br />72<br />73<br />74<br />75<br />76<br />77<br />78<br />79<br />80<br />81<br />82<br />83<br />84<br />85<br />86<br />87<br />88<br />89<br />90<br />91<br />92<br />93<br />94<br />95<br />96<br /></div></td><td><div class="actionscript codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">package<br />
<span style="color: #66cc66;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">display</span>.<span style="color: #006600;">NativeWindowSystemChrome</span>;<br />
&nbsp; &nbsp; <span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">display</span>.<span style="color: #006600;">NativeWindowType</span>;<br />
&nbsp; &nbsp; <span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">events</span>.<span style="color: #66cc66;">*</span>;<br />
&nbsp; &nbsp; <span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">utils</span>.<span style="color: #006600;">Timer</span>;<br />
<br />
&nbsp; &nbsp; <span style="color: #0066CC;">import</span> mx.<span style="color: #006600;">containers</span>.<span style="color: #006600;">Canvas</span>;<br />
&nbsp; &nbsp; <span style="color: #0066CC;">import</span> mx.<span style="color: #006600;">controls</span>.<span style="color: #0066CC;">Button</span>;<br />
&nbsp; &nbsp; <span style="color: #0066CC;">import</span> mx.<span style="color: #006600;">controls</span>.<span style="color: #006600;">TextArea</span>;<br />
&nbsp; &nbsp; <span style="color: #0066CC;">import</span> mx.<span style="color: #006600;">core</span>.<span style="color: #006600;">Window</span>;<br />
&nbsp; &nbsp; <span style="color: #0066CC;">import</span> mx.<span style="color: #006600;">events</span>.<span style="color: #006600;">FlexEvent</span>;<br />
<br />
&nbsp; &nbsp; <span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">class</span> AlertWin <span style="color: #0066CC;">extends</span> Window<br />
&nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> _showTimer:Timer;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> _delayTimer:Timer;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> _hideTimer:Timer;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> _delayTime:<span style="color: #0066CC;">int</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> _message:<span style="color: #0066CC;">String</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> <span style="color: #0066CC;">_width</span>:<span style="color: #0066CC;">int</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> <span style="color: #0066CC;">_height</span>:<span style="color: #0066CC;">int</span>;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> _systemChrome:NativeWindowSystemChrome;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> _windowType:NativeWindowType<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">function</span> AlertWin<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">this</span>.<span style="color: #006600;">maximizable</span> = <span style="color: #000000; font-weight: bold;">false</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">this</span>.<span style="color: #006600;">resizable</span> = <span style="color: #000000; font-weight: bold;">false</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">this</span>.<span style="color: #006600;">minimizable</span> = <span style="color: #000000; font-weight: bold;">false</span>;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;">// alternate, none, standard, utility</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">this</span>.<span style="color: #006600;">systemChrome</span> = <span style="color: #ff0000;">&quot;none&quot;</span>;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #808080; font-style: italic;">// lightweight, normal, utility</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">this</span>.<span style="color: #0066CC;">type</span> = <span style="color: #ff0000;">&quot;lightweight&quot;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">this</span>.<span style="color: #006600;">addEventListener</span><span style="color: #66cc66;">&#40;</span>FlexEvent.<span style="color: #006600;">CREATION_COMPLETE</span>, completeHandler<span style="color: #66cc66;">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">function</span> completeHandler<span style="color: #66cc66;">&#40;</span>event:FlexEvent<span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span> <span style="color: #66cc66;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">this</span>.<span style="color: #006600;">nativeWindow</span>.<span style="color: #006600;">x</span> = flash.<span style="color: #006600;">display</span>.<span style="color: #006600;">Screen</span>.<span style="color: #006600;">mainScreen</span>.<span style="color: #006600;">bounds</span>.<span style="color: #0066CC;">width</span> - <span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">this</span>.<span style="color: #0066CC;">width</span> + <span style="color: #cc66cc;">20</span><span style="color: #66cc66;">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">this</span>.<span style="color: #006600;">nativeWindow</span>.<span style="color: #006600;">y</span> = flash.<span style="color: #006600;">display</span>.<span style="color: #006600;">Screen</span>.<span style="color: #006600;">mainScreen</span>.<span style="color: #006600;">bounds</span>.<span style="color: #0066CC;">height</span> - <span style="color: #cc66cc;">20</span>;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">this</span>.<span style="color: #006600;">horizontalScrollPolicy</span> = <span style="color: #ff0000;">&quot;off&quot;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">this</span>.<span style="color: #006600;">verticalScrollPolicy</span> = <span style="color: #ff0000;">&quot;off&quot;</span>;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _showTimer = <span style="color: #000000; font-weight: bold;">new</span> Timer<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">10</span>,<span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _showTimer.<span style="color: #006600;">addEventListener</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;timer&quot;</span>, showTimerHandler<span style="color: #66cc66;">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _showTimer.<span style="color: #0066CC;">start</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">function</span> <span style="color: #0066CC;">show</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">message</span>:<span style="color: #0066CC;">String</span>, title:<span style="color: #0066CC;">String</span> = <span style="color: #ff0000;">&quot;&quot;</span>, delayTime:<span style="color: #0066CC;">int</span>=<span style="color: #cc66cc;">2</span>, <span style="color: #0066CC;">width</span>:<span style="color: #0066CC;">int</span>=<span style="color: #cc66cc;">200</span>, <span style="color: #0066CC;">height</span>:<span style="color: #0066CC;">int</span>=<span style="color: #cc66cc;">150</span><span style="color: #66cc66;">&#41;</span>: <span style="color: #0066CC;">void</span> <span style="color: #66cc66;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _delayTime = delayTime;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">this</span>.<span style="color: #0066CC;">width</span> = <span style="color: #0066CC;">width</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">this</span>.<span style="color: #0066CC;">height</span> = <span style="color: #0066CC;">height</span>;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">var</span> cnv:Canvas = <span style="color: #000000; font-weight: bold;">new</span> Canvas<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cnv.<span style="color: #0066CC;">width</span> = <span style="color: #0066CC;">width</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cnv.<span style="color: #0066CC;">height</span> = <span style="color: #0066CC;">height</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cnv.<span style="color: #006600;">horizontalScrollPolicy</span> = <span style="color: #ff0000;">&quot;off&quot;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cnv.<span style="color: #006600;">verticalScrollPolicy</span> = <span style="color: #ff0000;">&quot;off&quot;</span>;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">var</span> ta:TextArea = <span style="color: #000000; font-weight: bold;">new</span> TextArea<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ta.<span style="color: #0066CC;">text</span> = <span style="color: #0066CC;">message</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ta.<span style="color: #0066CC;">width</span> = <span style="color: #0066CC;">width</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ta.<span style="color: #0066CC;">height</span> = <span style="color: #0066CC;">height</span>;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">var</span> btn:<span style="color: #0066CC;">Button</span> = <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">Button</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; btn.<span style="color: #006600;">label</span> = <span style="color: #ff0000;">&quot;My Message&quot;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; btn.<span style="color: #0066CC;">setStyle</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;right&quot;</span>, <span style="color: #ff0000;">&quot;5&quot;</span><span style="color: #66cc66;">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; btn.<span style="color: #0066CC;">setStyle</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;bottom&quot;</span>, <span style="color: #ff0000;">&quot;45&quot;</span><span style="color: #66cc66;">&#41;</span>;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cnv.<span style="color: #006600;">addChild</span><span style="color: #66cc66;">&#40;</span>ta<span style="color: #66cc66;">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cnv.<span style="color: #006600;">addChild</span><span style="color: #66cc66;">&#40;</span>btn<span style="color: #66cc66;">&#41;</span>;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">this</span>.<span style="color: #006600;">addChild</span><span style="color: #66cc66;">&#40;</span>cnv<span style="color: #66cc66;">&#41;</span>;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">this</span>.<span style="color: #006600;">open</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">function</span> showTimerHandler<span style="color: #66cc66;">&#40;</span>event:TimerEvent<span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span> <span style="color: #66cc66;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">this</span>.<span style="color: #006600;">nativeWindow</span>.<span style="color: #006600;">y</span> -= <span style="color: #cc66cc;">10</span>;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">this</span>.<span style="color: #006600;">nativeWindow</span>.<span style="color: #006600;">y</span> = <span style="color: #66cc66;">&#40;</span>flash.<span style="color: #006600;">display</span>.<span style="color: #006600;">Screen</span>.<span style="color: #006600;">mainScreen</span>.<span style="color: #006600;">bounds</span>.<span style="color: #006600;">height</span>-<span style="color: #cc66cc;">20</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0066CC;">this</span>.<span style="color: #0066CC;">close</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _hideTimer.<span style="color: #0066CC;">stop</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #66cc66;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _hideTimer.<span style="color: #0066CC;">stop</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />
&nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />
<span style="color: #66cc66;">&#125;</span></div></td></tr></tbody></table></div>
<p>Thanks Guys! I got a bit more to do with this class but I can see the light at the end of the tunnel now. I want to completely remove the chrome and use a simple border.</p>
<p>Thanks again. I&#8217;ll keep looking here to see if you got any improvements that could be made.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

