<?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; systemChrome</title>
	<atom:link href="http://airexamples.com/tag/systemchrome/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>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 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 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>
		<item>
		<title>Setting the button padding on a WindowedApplication in Adobe AIR</title>
		<link>http://airexamples.com/2008/12/26/setting-the-button-padding-on-a-windowedapplication-in-adobe-air/</link>
		<comments>http://airexamples.com/2008/12/26/setting-the-button-padding-on-a-windowedapplication-in-adobe-air/#comments</comments>
		<pubDate>Fri, 26 Dec 2008 14:44:19 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[WindowedApplication]]></category>
		<category><![CDATA[buttonPadding]]></category>
		<category><![CDATA[systemChrome]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=201</guid>
		<description><![CDATA[The following example shows how you can set the button padding on an Adobe AIR WindowedApplication container by setting the buttonPadding 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-button-padding-on-a-windowedapplication-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;WindowedApplication_buttonPadding_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; buttonPadding=&#34;{slider.value}&#34;&#62; &#160; &#60;mx:ApplicationControlBar dock=&#34;true&#34;&#62; &#60;mx:Form&#62; &#60;mx:FormItem label=&#34;buttonPadding:&#34;&#62; &#60;mx:HSlider id=&#34;slider&#34; minimum=&#34;0&#34; maximum=&#34;20&#34; value=&#34;2&#34; snapInterval=&#34;1&#34; tickInterval=&#34;1&#34; liveDragging=&#34;true&#34; /&#62; &#60;/mx:FormItem&#62; &#60;/mx:Form&#62; [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/26/setting-the-button-padding-on-a-windowedapplication-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting the padding around the gripper on a WindowedApplication in Adobe AIR</title>
		<link>http://airexamples.com/2008/12/25/setting-the-padding-around-the-gripper-on-a-windowedapplication-in-adobe-air/</link>
		<comments>http://airexamples.com/2008/12/25/setting-the-padding-around-the-gripper-on-a-windowedapplication-in-adobe-air/#comments</comments>
		<pubDate>Thu, 25 Dec 2008 21:01:41 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[WindowedApplication]]></category>
		<category><![CDATA[gripperPadding]]></category>
		<category><![CDATA[showStatusBar]]></category>
		<category><![CDATA[systemChrome]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=197</guid>
		<description><![CDATA[In a previous example, &#8220;Toggling the gripper on a WindowedApplication container in Adobe AIR&#8221;, we saw how you can toggle the gripper on an Adobe AIR WindowedApplication container by setting the Boolean showGripper property. The following example shows how you can set the padding around the gripper on an Adobe AIR WindowedApplication container by setting [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/25/setting-the-padding-around-the-gripper-on-a-windowedapplication-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Toggling the gripper on a WindowedApplication container in Adobe AIR</title>
		<link>http://airexamples.com/2008/12/25/toggling-the-gripper-on-a-windowedapplication-container-in-adobe-air/</link>
		<comments>http://airexamples.com/2008/12/25/toggling-the-gripper-on-a-windowedapplication-container-in-adobe-air/#comments</comments>
		<pubDate>Thu, 25 Dec 2008 20:48:07 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[WindowedApplication]]></category>
		<category><![CDATA[showGripper]]></category>
		<category><![CDATA[systemChrome]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=192</guid>
		<description><![CDATA[The following example shows how you can toggle the gripper on an Adobe AIR WindowedApplication container by setting the Boolean showGripper property. Note: On Mac OS X a window with systemChrome set to &#8220;standard&#8221; always has an operating system gripper, so this property is ignored in that case. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2008/12/25/toggling-the-gripper-on-a-windowedapplication-container-in-adobe-air/ --&#62; &#60;mx:WindowedApplication [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/25/toggling-the-gripper-on-a-windowedapplication-container-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Detecting the current system chrome setting in an Adobe AIR application</title>
		<link>http://airexamples.com/2008/12/25/detecting-the-current-system-chrome-setting-in-an-adobe-air-application/</link>
		<comments>http://airexamples.com/2008/12/25/detecting-the-current-system-chrome-setting-in-an-adobe-air-application/#comments</comments>
		<pubDate>Thu, 25 Dec 2008 16:24:41 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[WindowedApplication]]></category>
		<category><![CDATA[NativeWindowSystemChrome]]></category>
		<category><![CDATA[systemChrome]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=232</guid>
		<description><![CDATA[The following example show show you can detect the current system chrome setting in an Adobe AIR application by using the read-only systemChrome property and the static constants in the NativeWindowSystemChrome class. Full code after the jump. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2008/12/25/detecting-the-current-system-chrome-setting-in-an-adobe-air-application/ --&#62; &#60;mx:WindowedApplication name=&#34;WindowedApplication_systemChrome_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; verticalAlign=&#34;middle&#34; backgroundColor=&#34;white&#34; initialize=&#34;init();&#34;&#62; &#160; &#60;mx:Script&#62; &#60;![CDATA[ import flash.display.NativeWindowSystemChrome; [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/25/detecting-the-current-system-chrome-setting-in-an-adobe-air-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting a custom text format on a WindowedApplication container&#8217;s title bar in Adobe AIR</title>
		<link>http://airexamples.com/2008/12/16/setting-a-custom-text-format-on-a-windowedapplication-containers-title-bar-in-adobe-air/</link>
		<comments>http://airexamples.com/2008/12/16/setting-a-custom-text-format-on-a-windowedapplication-containers-title-bar-in-adobe-air/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 06:10:23 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[WindowedApplication]]></category>
		<category><![CDATA[systemChrome]]></category>
		<category><![CDATA[titleTextStyleName]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=101</guid>
		<description><![CDATA[The following example shows how you can set a custom text format on a Adobe AIR WindowedApplication container&#8217;s title bar by setting the titleTextStyleName style. Full code after the jump. Download WindowedApplication_titleTextStyleName_test &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2008/12/16/setting-a-custom-text-format-on-a-windowedapplication-containers-title-bar-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;WindowedApplication_titleTextStyleName_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; title=&#34;WindowedApplication title&#34; titleIcon=&#34;@Embed('assets/iconCritical.png')&#34; titleTextStyleName=&#34;boldRed&#34;&#62; &#160; &#60;mx:Style&#62; @font-face { src: url(&#34;assets/ARIALBD.TTF&#34;); fontFamily: &#34;ArialEmbedded&#34;; fontWeight: [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/16/setting-a-custom-text-format-on-a-windowedapplication-containers-title-bar-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
