<?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 for AIR Examples</title>
	<atom:link href="http://airexamples.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://airexamples.com</link>
	<description>A bunch of Adobe AIR examples*</description>
	<lastBuildDate>Sat, 17 Mar 2012 01:22:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Browsing for directories on a user&#8217;s computer using Adobe AIR by Andrea</title>
		<link>http://airexamples.com/2008/12/23/browsing-for-directories-on-a-users-computer-using-adobe-air/comment-page-1/#comment-8247</link>
		<dc:creator>Andrea</dc:creator>
		<pubDate>Sat, 17 Mar 2012 01:22:59 +0000</pubDate>
		<guid isPermaLink="false">http://airexamples.com/?p=171#comment-8247</guid>
		<description>Hi Peter,
thank you for your posts!
I have a question: what if I want the dialog box to already be in a specific folder when opened?

Hope you can help me.
Andrea =)</description>
		<content:encoded><![CDATA[<p>Hi Peter,<br />
thank you for your posts!<br />
I have a question: what if I want the dialog box to already be in a specific folder when opened?</p>
<p>Hope you can help me.<br />
Andrea =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sorting the FileSystemDataGrid control by date in Adobe AIR by jeff</title>
		<link>http://airexamples.com/2010/03/10/sorting-the-filesystemdatagrid-control-by-date-in-adobe-air/comment-page-1/#comment-8130</link>
		<dc:creator>jeff</dc:creator>
		<pubDate>Thu, 16 Feb 2012 19:24:25 +0000</pubDate>
		<guid isPermaLink="false">http://airexamples.com/?p=356#comment-8130</guid>
		<description>so as they navigate back if they sorted in those directories the sort will remain?

by default it doesnt keep it</description>
		<content:encoded><![CDATA[<p>so as they navigate back if they sorted in those directories the sort will remain?</p>
<p>by default it doesnt keep it</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sorting the FileSystemDataGrid control by date in Adobe AIR by jeff</title>
		<link>http://airexamples.com/2010/03/10/sorting-the-filesystemdatagrid-control-by-date-in-adobe-air/comment-page-1/#comment-8129</link>
		<dc:creator>jeff</dc:creator>
		<pubDate>Thu, 16 Feb 2012 19:03:28 +0000</pubDate>
		<guid isPermaLink="false">http://airexamples.com/?p=356#comment-8129</guid>
		<description>is there a way to keep whatever sort was clicked as user change directories?</description>
		<content:encoded><![CDATA[<p>is there a way to keep whatever sort was clicked as user change directories?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Displaying custom icons in an Adobe AIR application by Alex</title>
		<link>http://airexamples.com/2008/12/30/displaying-custom-icons-in-an-adobe-air-application/comment-page-1/#comment-8005</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Mon, 23 Jan 2012 13:06:19 +0000</pubDate>
		<guid isPermaLink="false">http://airexamples.com/?p=314#comment-8005</guid>
		<description>andrey: use

in XML:

    icons/16.png
    icons/32.png
    icons/48.png
    icons/128.png


and in program:
if (NativeApplication.supportsSystemTrayIcon) { 
                icon.load(new URLRequest(&quot;icons/16.png&quot;)); 
          
                
            } 
 
            if (NativeApplication.supportsDockIcon){ 
                 
                icon.load(new URLRequest(&quot;icons/128.png&quot;)); 
                
            }</description>
		<content:encoded><![CDATA[<p>andrey: use</p>
<p>in XML:</p>
<p>    icons/16.png<br />
    icons/32.png<br />
    icons/48.png<br />
    icons/128.png</p>
<p>and in program:<br />
if (NativeApplication.supportsSystemTrayIcon) {<br />
                icon.load(new URLRequest(&#8220;icons/16.png&#8221;)); </p>
<p>            } </p>
<p>            if (NativeApplication.supportsDockIcon){ </p>
<p>                icon.load(new URLRequest(&#8220;icons/128.png&#8221;)); </p>
<p>            }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Determining the selected path for a FileSystemTree control in Adobe AIR by Mukesh Mehra</title>
		<link>http://airexamples.com/2008/12/14/determining-the-selected-path-for-a-filesystemtree-control-in-adobe-air/comment-page-1/#comment-7633</link>
		<dc:creator>Mukesh Mehra</dc:creator>
		<pubDate>Tue, 15 Nov 2011 12:12:14 +0000</pubDate>
		<guid isPermaLink="false">http://airexamples.com/?p=65#comment-7633</guid>
		<description>var file:File = new File();
file.nativePath=&quot;D://FolderData/folder&quot;;
treeId.directory=file;</description>
		<content:encoded><![CDATA[<p>var file:File = new File();<br />
file.nativePath=&#8221;D://FolderData/folder&#8221;;<br />
treeId.directory=file;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Displaying a custom title bar icon in a WindowedApplication container in Adobe AIR by Maya</title>
		<link>http://airexamples.com/2010/03/13/displaying-a-custom-title-bar-icon-in-a-windowedapplication-container-in-adobe-air/comment-page-1/#comment-7475</link>
		<dc:creator>Maya</dc:creator>
		<pubDate>Thu, 20 Oct 2011 10:39:55 +0000</pubDate>
		<guid isPermaLink="false">http://airexamples.com/?p=218#comment-7475</guid>
		<description>估计楼上的路径错了</description>
		<content:encoded><![CDATA[<p>估计楼上的路径错了</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Displaying custom icons in an Adobe AIR application by andrey</title>
		<link>http://airexamples.com/2008/12/30/displaying-custom-icons-in-an-adobe-air-application/comment-page-1/#comment-7384</link>
		<dc:creator>andrey</dc:creator>
		<pubDate>Mon, 26 Sep 2011 17:40:37 +0000</pubDate>
		<guid isPermaLink="false">http://airexamples.com/?p=314#comment-7384</guid>
		<description>Two days of trying to implement the icon does not work.
Only after the export in .air will be displayed. (This is not mentioned anywhere in the help that in order to display the icon you want to create .air!!!!!</description>
		<content:encoded><![CDATA[<p>Two days of trying to implement the icon does not work.<br />
Only after the export in .air will be displayed. (This is not mentioned anywhere in the help that in order to display the icon you want to create .air!!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Opening a new Window in Adobe AIR by Hollywood</title>
		<link>http://airexamples.com/2010/03/12/opening-a-new-window-in-adobe-air/comment-page-1/#comment-7233</link>
		<dc:creator>Hollywood</dc:creator>
		<pubDate>Tue, 30 Aug 2011 12:03:57 +0000</pubDate>
		<guid isPermaLink="false">http://airexamples.com/?p=362#comment-7233</guid>
		<description>thanks very much for the post, very helpful, but how do you communicate or send data back and forth between the parent application and the newly created window. thanks</description>
		<content:encoded><![CDATA[<p>thanks very much for the post, very helpful, but how do you communicate or send data back and forth between the parent application and the newly created window. thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Displaying custom icons in an Adobe AIR application by Wilson Oto</title>
		<link>http://airexamples.com/2008/12/30/displaying-custom-icons-in-an-adobe-air-application/comment-page-1/#comment-6958</link>
		<dc:creator>Wilson Oto</dc:creator>
		<pubDate>Fri, 22 Jul 2011 04:56:04 +0000</pubDate>
		<guid isPermaLink="false">http://airexamples.com/?p=314#comment-6958</guid>
		<description>I&#039;ve eventually identified a regular presentation on this matter. Thank you</description>
		<content:encoded><![CDATA[<p>I&#8217;ve eventually identified a regular presentation on this matter. Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Specifying a custom install folder for an application in Adobe AIR by Johnny_g</title>
		<link>http://airexamples.com/2008/12/30/specifying-a-custom-install-folder-for-an-application-in-adobe-air/comment-page-1/#comment-6941</link>
		<dc:creator>Johnny_g</dc:creator>
		<pubDate>Tue, 12 Jul 2011 05:11:43 +0000</pubDate>
		<guid isPermaLink="false">http://airexamples.com/?p=304#comment-6941</guid>
		<description>Is it possible to add application to a sub folder.
For instance myFolder/AIRExamples.com

create a subfolder in a MAC, can this be possible on PC?
Thanks</description>
		<content:encoded><![CDATA[<p>Is it possible to add application to a sub folder.<br />
For instance myFolder/AIRExamples.com</p>
<p>create a subfolder in a MAC, can this be possible on PC?<br />
Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

