<?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>AIR Examples &#187; WindowedApplication</title>
	<atom:link href="http://airexamples.com/tag/windowedapplication/feed/" rel="self" type="application/rss+xml" />
	<link>http://airexamples.com</link>
	<description>A bunch of Adobe AIR examples*</description>
	<lastBuildDate>Tue, 16 Mar 2010 07:50:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Keeping a WindowedApplication on top of other windows in Adobe AIR</title>
		<link>http://airexamples.com/2010/03/12/keeping-a-windowedapplication-on-top-of-other-windows-in-adobe-air/</link>
		<comments>http://airexamples.com/2010/03/12/keeping-a-windowedapplication-on-top-of-other-windows-in-adobe-air/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 07:30:19 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[WindowedApplication]]></category>
		<category><![CDATA[alwaysInFront]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=245</guid>
		<description><![CDATA[The following example shows how you can keep a WindowedApplication container on top of other windows in Adobe AIR by setting the Boolean alwaysInFront property. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2010/03/12/keeping-a-windowedapplication-on-top-of-other-windows-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;WindowedApplication_alwaysInFront_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; verticalAlign=&#34;middle&#34; backgroundColor=&#34;white&#34; alwaysInFront=&#34;{checkBox.selected}&#34;&#62; &#160; &#60;mx:ApplicationControlBar dock=&#34;true&#34;&#62; &#60;mx:Form styleName=&#34;plain&#34;&#62; &#60;mx:FormItem label=&#34;alwaysInFront:&#34;&#62; &#60;mx:CheckBox id=&#34;checkBox&#34; /&#62; &#60;/mx:FormItem&#62; &#60;/mx:Form&#62; &#60;/mx:ApplicationControlBar&#62; &#160; &#60;/mx:WindowedApplication&#62;]]></description>
		<wfw:commentRss>http://airexamples.com/2010/03/12/keeping-a-windowedapplication-on-top-of-other-windows-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting the button alignment on a WindowedApplication container in Adobe AIR</title>
		<link>http://airexamples.com/2009/02/26/setting-the-button-alignment-on-a-windowedapplication-container-in-adobe-air/</link>
		<comments>http://airexamples.com/2009/02/26/setting-the-button-alignment-on-a-windowedapplication-container-in-adobe-air/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 03:18:55 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[WindowedApplication]]></category>
		<category><![CDATA[buttonAlignment]]></category>
		<category><![CDATA[systemChrome]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=216</guid>
		<description><![CDATA[The following example shows how you can set the button alignment in an Adobe AIR WindowedApplication container by setting the buttonAlignment style. According to the Adobe AIR documentation: Position of buttons in title bar. Possible values: &#8220;left&#8221;, &#8220;right&#8221;, &#8220;auto&#8221;. A value of &#8220;left&#8221; means the buttons are aligned at the left of the title bar. [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2009/02/26/setting-the-button-alignment-on-a-windowedapplication-container-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Setting the header height on a WindowedApplication container in Adobe AIR</title>
		<link>http://airexamples.com/2009/02/26/setting-the-header-height-on-a-windowedapplication-container-in-adobe-air/</link>
		<comments>http://airexamples.com/2009/02/26/setting-the-header-height-on-a-windowedapplication-container-in-adobe-air/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 03:14:31 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[WindowedApplication]]></category>
		<category><![CDATA[headerHeight]]></category>
		<category><![CDATA[systemChrome]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=209</guid>
		<description><![CDATA[The following example shows how you can set the header height on an Adobe AIR WindowedApplication container by setting the headerHeight style. Full code after the jump. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2009/02/26/setting-the-header-height-on-a-windowedapplication-container-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;WindowedApplication_headerHeight_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; title=&#34;WindowedApplication headerHeight&#34; headerHeight=&#34;{slider.value}&#34;&#62; &#160; &#60;mx:ApplicationControlBar dock=&#34;true&#34;&#62; &#60;mx:Form&#62; &#60;mx:FormItem label=&#34;headerHeight:&#34;&#62; &#60;mx:HSlider id=&#34;slider&#34; minimum=&#34;30&#34; maximum=&#34;60&#34; value=&#34;30&#34; snapInterval=&#34;1&#34; tickInterval=&#34;2&#34; liveDragging=&#34;true&#34; /&#62; [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2009/02/26/setting-the-header-height-on-a-windowedapplication-container-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting a background image on a WindowedApplication container in Adobe AIR</title>
		<link>http://airexamples.com/2009/02/05/setting-a-background-image-on-a-windowedapplication-container-in-adobe-air/</link>
		<comments>http://airexamples.com/2009/02/05/setting-a-background-image-on-a-windowedapplication-container-in-adobe-air/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 06:16:22 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[WindowedApplication]]></category>
		<category><![CDATA[backgroundImage]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=230</guid>
		<description><![CDATA[The following example shows how you can set the background image on an Adobe AIR WindowedApplication container by setting the backgroundImage style. Full code after the jump. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2009/02/05/setting-a-background-image-on-a-windowedapplication-container-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;WindowedApplication_backgroundImage_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; verticalAlign=&#34;middle&#34; backgroundColor=&#34;white&#34; backgroundImage=&#34;mx.skins.halo.ApplicationBackground&#34; backgroundSize=&#34;100%&#34;&#62; &#160; &#60;mx:Label text=&#34;backgroundImage = mx.skins.halo.ApplicationBackground&#34; /&#62; &#160; &#60;/mx:WindowedApplication&#62; You can also set the backgroundImage [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2009/02/05/setting-a-background-image-on-a-windowedapplication-container-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Setting a maximum width and height on a WindowedApplication container in Adobe AIR</title>
		<link>http://airexamples.com/2009/01/19/setting-a-maximum-width-and-height-on-a-windowedapplication-container-in-adobe-air/</link>
		<comments>http://airexamples.com/2009/01/19/setting-a-maximum-width-and-height-on-a-windowedapplication-container-in-adobe-air/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 16:06:18 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[WindowedApplication]]></category>
		<category><![CDATA[maxHeight]]></category>
		<category><![CDATA[maxWidth]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=247</guid>
		<description><![CDATA[The following example shows how you can set a maximum width and height on a Adobe AIR application by setting the maxWidth and maxHeight properties on the WindowedApplication tag. Full code after the jump. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2009/01/19/setting-a-maximum-width-and-height-on-a-windowedapplication-container-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;WindowedApplication_maxWidth_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; verticalAlign=&#34;middle&#34; backgroundColor=&#34;white&#34; maxWidth=&#34;800&#34; maxHeight=&#34;600&#34; width=&#34;550&#34; height=&#34;400&#34;&#62; &#160; &#60;mx:Form&#62; &#60;mx:FormItem label=&#34;width:&#34;&#62; &#60;mx:Label [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2009/01/19/setting-a-maximum-width-and-height-on-a-windowedapplication-container-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Setting a minimum width and height on a WindowedApplication container in Adobe AIR</title>
		<link>http://airexamples.com/2009/01/19/setting-a-minimum-width-and-height-on-a-windowedapplication-container-in-adobe-air/</link>
		<comments>http://airexamples.com/2009/01/19/setting-a-minimum-width-and-height-on-a-windowedapplication-container-in-adobe-air/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 16:04:10 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[WindowedApplication]]></category>
		<category><![CDATA[minHeight]]></category>
		<category><![CDATA[minWidth]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=249</guid>
		<description><![CDATA[The following example shows how you can set a minimum width and height on a Adobe AIR application by setting the minWidth and minHeight properties on the WindowedApplication tag. Full code after the jump. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2009/01/19/setting-a-minimum-width-and-height-on-a-windowedapplication-container-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;WindowedApplication_minWidth_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; verticalAlign=&#34;middle&#34; backgroundColor=&#34;white&#34; minWidth=&#34;300&#34; minHeight=&#34;200&#34; width=&#34;550&#34; height=&#34;400&#34;&#62; &#160; &#60;mx:Form&#62; &#60;mx:FormItem label=&#34;width:&#34;&#62; &#60;mx:Label [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2009/01/19/setting-a-minimum-width-and-height-on-a-windowedapplication-container-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Detecting when a WindowedApplication container is activated or deactivated in Adobe AIR</title>
		<link>http://airexamples.com/2009/01/14/detecting-when-a-windowedapplication-container-is-activated-or-deactivated-in-adobe-air/</link>
		<comments>http://airexamples.com/2009/01/14/detecting-when-a-windowedapplication-container-is-activated-or-deactivated-in-adobe-air/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 03:49:08 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[WindowedApplication]]></category>
		<category><![CDATA[activate]]></category>
		<category><![CDATA[deactivate]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=243</guid>
		<description><![CDATA[The following example shows how you can detect when an Adobe AIR WindowedApplication is activated or deactivated by listening for the activate and deactivate events. Full code after the jump. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- --&#62; &#60;mx:WindowedApplication name=&#34;WindowedApplication_activate_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; verticalAlign=&#34;middle&#34; backgroundColor=&#34;white&#34; activate=&#34;windowedApp_activate(event);&#34; deactivate=&#34;windowedApp_deactivate(event);&#34;&#62; &#160; &#60;mx:Script&#62; &#60;![CDATA[ private function windowedApp_activate(evt:Event):void { lbl.text = evt.type; lbl.setStyle(&#34;color&#34;, &#34;haloGreen&#34;); [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2009/01/14/detecting-when-a-windowedapplication-container-is-activated-or-deactivated-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting the width and height of a WindowedApplication container in Adobe AIR (redux)</title>
		<link>http://airexamples.com/2008/12/27/setting-the-width-and-height-of-a-windowedapplication-container-in-adobe-air-redux/</link>
		<comments>http://airexamples.com/2008/12/27/setting-the-width-and-height-of-a-windowedapplication-container-in-adobe-air-redux/#comments</comments>
		<pubDate>Sun, 28 Dec 2008 07:56:11 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[WindowedApplication]]></category>
		<category><![CDATA[height]]></category>
		<category><![CDATA[initialWindow]]></category>
		<category><![CDATA[width]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=301</guid>
		<description><![CDATA[In a previous example, &#8220;Setting the width and height of a WindowedApplication container in Adobe AIR&#8221;, we saw how to set the initial width and height of an Adobe AIR WindowedApplication container by setting the width and height properties. The following example shows how you can set the width and height of a WindowedApplication container [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/27/setting-the-width-and-height-of-a-windowedapplication-container-in-adobe-air-redux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting the width and height of a WindowedApplication container in Adobe AIR</title>
		<link>http://airexamples.com/2008/12/27/setting-the-width-and-height-of-a-windowedapplication-container-in-adobe-air/</link>
		<comments>http://airexamples.com/2008/12/27/setting-the-width-and-height-of-a-windowedapplication-container-in-adobe-air/#comments</comments>
		<pubDate>Sun, 28 Dec 2008 07:38:13 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[WindowedApplication]]></category>
		<category><![CDATA[height]]></category>
		<category><![CDATA[width]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=297</guid>
		<description><![CDATA[The following example shows how you can set the initial width and height of an Adobe AIR WindowedApplication container by setting the width and height properties. Full code after the jump. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2008/12/27/setting-the-width-and-height-of-a-windowedapplication-container-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;WindowedApplication_width_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; width=&#34;800&#34; height=&#34;600&#34;&#62; &#160; &#60;mx:Label text=&#34;{this.width}x{this.height}&#34; /&#62; &#160; &#60;/mx:WindowedApplication&#62;]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/27/setting-the-width-and-height-of-a-windowedapplication-container-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting the corner radius on a WindowedApplication container in Adobe AIR</title>
		<link>http://airexamples.com/2008/12/26/setting-the-corner-radius-on-a-windowedapplication-container-in-adobe-air/</link>
		<comments>http://airexamples.com/2008/12/26/setting-the-corner-radius-on-a-windowedapplication-container-in-adobe-air/#comments</comments>
		<pubDate>Fri, 26 Dec 2008 21:53:26 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[WindowedApplication]]></category>
		<category><![CDATA[cornerRadius]]></category>
		<category><![CDATA[systemChrome]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=205</guid>
		<description><![CDATA[The following example shows how you can set the corner radius on an Adobe AIR WindowedApplication container by setting the cornerRadius style. Full code after the jump. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2008/12/26/setting-the-corner-radius-on-a-windowedapplication-container-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;WindowedApplication_cornerRadius_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; cornerRadius=&#34;{slider.value}&#34; headerHeight=&#34;40&#34; titleTextStyleName=&#34;indentedText&#34;&#62; &#160; &#60;mx:Style&#62; .indentedText { textIndent: 10; } &#60;/mx:Style&#62; &#160; &#60;mx:ApplicationControlBar dock=&#34;true&#34;&#62; &#60;mx:Form&#62; &#60;mx:FormItem label=&#34;cornerRadius:&#34;&#62; &#60;mx:HSlider [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/26/setting-the-corner-radius-on-a-windowedapplication-container-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
