<?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</title>
	<atom:link href="http://airexamples.com/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>Detecting the number of screens on a users system in Adobe AIR</title>
		<link>http://airexamples.com/2010/03/15/detecting-the-number-of-screens-on-a-users-system-in-adobe-air/</link>
		<comments>http://airexamples.com/2010/03/15/detecting-the-number-of-screens-on-a-users-system-in-adobe-air/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 07:49:49 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[Screen]]></category>
		<category><![CDATA[colorDepth]]></category>
		<category><![CDATA[screens]]></category>
		<category><![CDATA[visibleBounds]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=388</guid>
		<description><![CDATA[The following example shows how you can detect the number of screens on a user&#8217;s system in Adobe AIR by using the static, read-only Screen.screens property. From the documentation: colorDepth &#8211; The color depth of this screen (expressed in number of bits). visibleBounds &#8211; The visibleBounds of a screen excludes the task bar (and other [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2010/03/15/detecting-the-number-of-screens-on-a-users-system-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opening a new NativeWindow in Adobe AIR</title>
		<link>http://airexamples.com/2010/03/13/opening-a-new-nativewindow-in-adobe-air/</link>
		<comments>http://airexamples.com/2010/03/13/opening-a-new-nativewindow-in-adobe-air/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 21:38:18 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[NativeWindow]]></category>
		<category><![CDATA[NativeWindowInitOptions]]></category>
		<category><![CDATA[NativeWindowType]]></category>
		<category><![CDATA[activate]]></category>
		<category><![CDATA[type]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=380</guid>
		<description><![CDATA[In a previous example, &#8220;Opening a new Window in Adobe AIR&#8221;, we saw how you could launch a new Flex Window container in Adobe AIR by creating a custom Window component and calling the open() method. The following example shows how you can launch a new &#8220;normal&#8221; or &#8220;utility&#8221; NativeWindow container in Adobe AIR by [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2010/03/13/opening-a-new-nativewindow-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Detecting the line-ending character sequence used by the host operating system in Adobe AIR</title>
		<link>http://airexamples.com/2010/03/13/detecting-the-line-ending-character-sequence-used-by-the-host-operating-system-in-adobe-air/</link>
		<comments>http://airexamples.com/2010/03/13/detecting-the-line-ending-character-sequence-used-by-the-host-operating-system-in-adobe-air/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 16:53:47 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[File]]></category>
		<category><![CDATA[lineEnding]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=259</guid>
		<description><![CDATA[The following example shows how you can detect the line ending character sequence used by the host operating system in Adobe AIR by using the static File.lineEnding property. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2010/03/13/detecting-the-line-ending-character-sequence-used-by-the-host-operating-system-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;File_lineEnding_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; verticalAlign=&#34;middle&#34; status=&#34;{Capabilities.os}&#34; height=&#34;200&#34;&#62; &#160; &#60;mx:Script&#62; &#60;![CDATA[ private function init():void { var arr:Array = File.lineEnding.split(&#34;&#34;); arr.forEach(charCodeMe); lbl.text = [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2010/03/13/detecting-the-line-ending-character-sequence-used-by-the-host-operating-system-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Displaying a custom title bar icon in a WindowedApplication container in Adobe AIR</title>
		<link>http://airexamples.com/2010/03/13/displaying-a-custom-title-bar-icon-in-a-windowedapplication-container-in-adobe-air/</link>
		<comments>http://airexamples.com/2010/03/13/displaying-a-custom-title-bar-icon-in-a-windowedapplication-container-in-adobe-air/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 08:59:19 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[WindowedApplication]]></category>
		<category><![CDATA[systemChrome]]></category>
		<category><![CDATA[titleIcon]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=218</guid>
		<description><![CDATA[The following example shows how you can display a custom title bar icon in a WindowedApplication container in Adobe AIR by setting the titleIcon property. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2010/03/13/displaying-a-custom-title-bar-icon-in-a-windowedapplication-container-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;WindowedApplication_titleIcon_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; verticalAlign=&#34;middle&#34; titleIcon=&#34;@Embed('assets/accept.png')&#34;&#62; &#160; &#60;/mx:WindowedApplication&#62; And edit the application&#8217;s XML file and edit the following lines: &#60;!-- The type of system [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2010/03/13/displaying-a-custom-title-bar-icon-in-a-windowedapplication-container-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Setting a custom text style on the status bar on a WindowedApplication container in Adobe AIR</title>
		<link>http://airexamples.com/2010/03/13/setting-a-custom-text-style-on-the-status-bar-on-a-windowedapplication-container-in-adobe-air/</link>
		<comments>http://airexamples.com/2010/03/13/setting-a-custom-text-style-on-the-status-bar-on-a-windowedapplication-container-in-adobe-air/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 08:14:08 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[WindowedApplication]]></category>
		<category><![CDATA[status]]></category>
		<category><![CDATA[statusTextStyleName]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=213</guid>
		<description><![CDATA[The following example shows how you can customize the text styles on the WindowedApplication status bar in Adobe AIR by setting the statusTextStyleName style. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2010/03/13/setting-a-custom-text-style-on-the-status-bar-on-a-windowedapplication-container-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;WindowedApplication_statusTextStyleName_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; status=&#34;WindowedApplication status&#34; statusTextStyleName=&#34;boldRed&#34;&#62; &#160; &#60;mx:Style&#62; @font-face { src: url(&#34;C:/Windows/Fonts/ARIALBD.TTF&#34;); fontFamily: &#34;ArialEmbedded&#34;; fontWeight: &#34;bold&#34;; } &#160; .boldRed { color: red; fontFamily: &#34;ArialEmbedded&#34;; [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2010/03/13/setting-a-custom-text-style-on-the-status-bar-on-a-windowedapplication-container-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>Specifying whether a new Window is focused in Adobe AIR</title>
		<link>http://airexamples.com/2010/03/12/specifying-whether-a-new-window-is-focused-in-adobe-air/</link>
		<comments>http://airexamples.com/2010/03/12/specifying-whether-a-new-window-is-focused-in-adobe-air/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 17:14:09 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[Window]]></category>
		<category><![CDATA[open()]]></category>
		<category><![CDATA[openWindowActive]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=365</guid>
		<description><![CDATA[In a previous example, &#8220;Opening a new Window in Adobe AIR&#8221;, we saw how you could launch a new Flex Window container in Adobe AIR by creating a custom Window component and calling the open() method. The following example shows how you can control whether the newly opened window receives focus and becomes active by [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2010/03/12/specifying-whether-a-new-window-is-focused-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Opening a new Window in Adobe AIR</title>
		<link>http://airexamples.com/2010/03/12/opening-a-new-window-in-adobe-air/</link>
		<comments>http://airexamples.com/2010/03/12/opening-a-new-window-in-adobe-air/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 17:03:28 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[Window]]></category>
		<category><![CDATA[open()]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=362</guid>
		<description><![CDATA[The following example shows how you can launch a new Flex Window container in Adobe AIR by creating a custom Window component and calling the open() method. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2010/03/12/opening-a-new-window-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;Window_open_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; verticalAlign=&#34;middle&#34; backgroundColor=&#34;white&#34;&#62; &#160; &#60;mx:Script&#62; &#60;![CDATA[ import mx.core.Window; &#160; protected function btn_clickHandler(evt:MouseEvent):void { new MyWin().open(); } ]]&#62; &#60;/mx:Script&#62; &#160; [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2010/03/12/opening-a-new-window-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Setting the file size display mode in the Flex FileSystemDataGrid control in Adobe AIR</title>
		<link>http://airexamples.com/2010/03/10/setting-the-file-size-display-mode-in-the-flex-filesystemdatagrid-control-in-adobe-air/</link>
		<comments>http://airexamples.com/2010/03/10/setting-the-file-size-display-mode-in-the-flex-filesystemdatagrid-control-in-adobe-air/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 02:24:42 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[FileSystemDataGrid]]></category>
		<category><![CDATA[FileSystemSizeDisplayMode]]></category>
		<category><![CDATA[sizeDisplayMode]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=359</guid>
		<description><![CDATA[The following example shows how you can toggle whether the Flex FileSystemDataGrid control in Adobe AIR shows file sizes in bytes or kilobytes by setting the sizeDisplayMode property to one of the static constants in the mx.controls.FileSystemSizeDisplayMode class. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2010/03/10/setting-the-file-size-display-mode-in-the-flex-filesystemdatagrid-control-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;FileSystemDataGrid_sizeDisplayMode_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; verticalAlign=&#34;middle&#34; backgroundColor=&#34;white&#34; width=&#34;600&#34; minHeight=&#34;400&#34;&#62; &#160; &#60;mx:ApplicationControlBar dock=&#34;true&#34;&#62; [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2010/03/10/setting-the-file-size-display-mode-in-the-flex-filesystemdatagrid-control-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sorting the FileSystemDataGrid control by date in Adobe AIR</title>
		<link>http://airexamples.com/2010/03/10/sorting-the-filesystemdatagrid-control-by-date-in-adobe-air/</link>
		<comments>http://airexamples.com/2010/03/10/sorting-the-filesystemdatagrid-control-by-date-in-adobe-air/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 02:05:01 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[FileSystemDataGrid]]></category>
		<category><![CDATA[creationDateColumn]]></category>
		<category><![CDATA[dateCompare()]]></category>
		<category><![CDATA[modificationDateColumn]]></category>
		<category><![CDATA[ObjectUtil]]></category>
		<category><![CDATA[sortCompareFunction]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=356</guid>
		<description><![CDATA[The following example shows how you can do a date sort on the Flex FileSystemDataGrid control in Adobe AIR by setting a custom sort compare function on the creationDateColumn and modificationDateColumn objects. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2010/03/10/sorting-the-filesystemdatagrid-control-by-date-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;FileSystemDataGrid_creationDateColumn_sortCompareFunction_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; verticalAlign=&#34;middle&#34; backgroundColor=&#34;white&#34; width=&#34;600&#34; minHeight=&#34;400&#34;&#62; &#160; &#60;mx:Script&#62; &#60;![CDATA[ import mx.utils.ObjectUtil; &#160; private function init():void [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2010/03/10/sorting-the-filesystemdatagrid-control-by-date-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
