<?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; FileSystemTree</title>
	<atom:link href="http://airexamples.com/tag/filesystemtree/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>Toggling icons on the FileSystemTree control in Adobe AIR</title>
		<link>http://airexamples.com/2008/12/15/toggling-icons-on-the-filesystemtree-control-in-adobe-air/</link>
		<comments>http://airexamples.com/2008/12/15/toggling-icons-on-the-filesystemtree-control-in-adobe-air/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 16:21:44 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[FileSystemTree]]></category>
		<category><![CDATA[showIcons]]></category>

		<guid isPermaLink="false">http://airexamples.com/2008/12/15/toggling-icons-on-the-filesystemtree-control-in-adobe-air/</guid>
		<description><![CDATA[The following example shows how you can toggle icons in the Adobe AIR FileSystemTree control by setting the showIcons property. Full code after the jump. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2008/12/15/toggling-icons-on-the-filesystemtree-control-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;FileSystemTree_showIcons_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; verticalAlign=&#34;middle&#34;&#62; &#160; &#60;mx:ApplicationControlBar dock=&#34;true&#34;&#62; &#60;mx:CheckBox id=&#34;checkBox&#34; label=&#34;showIcons:&#34; labelPlacement=&#34;left&#34; selected=&#34;true&#34; /&#62; &#60;/mx:ApplicationControlBar&#62; &#160; &#60;mx:FileSystemTree id=&#34;tree&#34; showIcons=&#34;{checkBox.selected}&#34; width=&#34;100%&#34; height=&#34;100%&#34; /&#62; &#160; &#60;/mx:WindowedApplication&#62;]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/15/toggling-icons-on-the-filesystemtree-control-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Toggling hidden files on the FileSystemTree control in Adobe AIR</title>
		<link>http://airexamples.com/2008/12/15/toggling-hidden-files-on-the-filesystemtree-control-in-adobe-air/</link>
		<comments>http://airexamples.com/2008/12/15/toggling-hidden-files-on-the-filesystemtree-control-in-adobe-air/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 15:16:18 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[FileSystemTree]]></category>
		<category><![CDATA[showHidden]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=71</guid>
		<description><![CDATA[The following example shows how you can toggle hidden files on the Adobe AIR FileSystemTree control by setting the showHidden property. Full code after the jump. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2008/12/15/toggling-hidden-files-on-the-filesystemtree-control-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;FileSystemTree_showHidden_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; verticalAlign=&#34;middle&#34;&#62; &#160; &#60;mx:ApplicationControlBar dock=&#34;true&#34;&#62; &#60;mx:CheckBox id=&#34;checkBox&#34; label=&#34;showHidden:&#34; labelPlacement=&#34;left&#34; /&#62; &#60;/mx:ApplicationControlBar&#62; &#160; &#60;mx:FileSystemTree id=&#34;tree&#34; showHidden=&#34;{checkBox.selected}&#34; width=&#34;100%&#34; height=&#34;100%&#34; /&#62; &#160; &#60;/mx:WindowedApplication&#62;]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/15/toggling-hidden-files-on-the-filesystemtree-control-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Determining the selected path for a FileSystemTree control in Adobe AIR</title>
		<link>http://airexamples.com/2008/12/14/determining-the-selected-path-for-a-filesystemtree-control-in-adobe-air/</link>
		<comments>http://airexamples.com/2008/12/14/determining-the-selected-path-for-a-filesystemtree-control-in-adobe-air/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 21:07:33 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[FileSystemTree]]></category>
		<category><![CDATA[selectedPath]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=65</guid>
		<description><![CDATA[The following example shows how you can get the selected path on an Adobe AIR FileSystemTree control by using the selectedPath property. Full code after the jump. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2008/12/14/determining-the-selected-path-for-a-filesystemtree-control-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;FileSystemTree_selectedPath_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; status=&#34;{tree.selectedPath}&#34; verticalAlign=&#34;middle&#34;&#62; &#160; &#60;mx:FileSystemTree id=&#34;tree&#34; width=&#34;100%&#34; height=&#34;100%&#34; /&#62; &#160; &#60;/mx:WindowedApplication&#62;]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/14/determining-the-selected-path-for-a-filesystemtree-control-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Toggling file extensions on the FileSystemTree control in Adobe AIR</title>
		<link>http://airexamples.com/2008/12/14/toggling-file-extensions-on-the-filesystemtree-control-in-adobe-air/</link>
		<comments>http://airexamples.com/2008/12/14/toggling-file-extensions-on-the-filesystemtree-control-in-adobe-air/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 17:11:27 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[FileSystemTree]]></category>
		<category><![CDATA[showExtensions]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=68</guid>
		<description><![CDATA[The following example shows how you can toggle file name extensions on the Adobe AIR FileSystemTree control by setting the showExtensions property. Full code after the jump. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2008/12/14/toggling-file-extensions-on-the-filesystemtree-control-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;FileSystemTree_showExtensions_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; verticalAlign=&#34;middle&#34;&#62; &#160; &#60;mx:ApplicationControlBar dock=&#34;true&#34;&#62; &#60;mx:CheckBox id=&#34;checkBox&#34; label=&#34;showExtensions:&#34; labelPlacement=&#34;left&#34; selected=&#34;true&#34; /&#62; &#60;/mx:ApplicationControlBar&#62; &#160; &#60;mx:FileSystemTree id=&#34;tree&#34; showExtensions=&#34;{checkBox.selected}&#34; width=&#34;100%&#34; height=&#34;100%&#34; /&#62; [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/14/toggling-file-extensions-on-the-filesystemtree-control-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Using a custom label function on a FileSystemTree control in Adobe AIR</title>
		<link>http://airexamples.com/2008/12/14/using-a-custom-label-function-on-a-filesystemtree-control-in-adobe-air/</link>
		<comments>http://airexamples.com/2008/12/14/using-a-custom-label-function-on-a-filesystemtree-control-in-adobe-air/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 14:25:42 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[FileSystemTree]]></category>
		<category><![CDATA[labelFunction]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=75</guid>
		<description><![CDATA[The following example shows how you can create a custom label function on an Adobe AIR FileSystemTree control by setting the labelFunction property to a custom function. Full code after the jump. The following example creates a custom label function which appends a string to hidden files and folders: &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2008/12/14/using-a-custom-label-function-on-a-filesystemtree-control-in-adobe-air/ --&#62; [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/14/using-a-custom-label-function-on-a-filesystemtree-control-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Toggling file and folder visibility on a FileSystemTree control in Adobe AIR</title>
		<link>http://airexamples.com/2008/12/13/toggling-file-and-folder-visibility-on-a-filesystemtree-control-in-adobe-air/</link>
		<comments>http://airexamples.com/2008/12/13/toggling-file-and-folder-visibility-on-a-filesystemtree-control-in-adobe-air/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 20:00:16 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[FileSystemTree]]></category>
		<category><![CDATA[enumerationMode]]></category>
		<category><![CDATA[FileSystemEnumerationMode]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=58</guid>
		<description><![CDATA[The following example shows how you can control whether the Adobe AIR FileSystemTree control displays only files, only subdirectories, or both by setting the enumerationMode property to one of the static constants in the FileSystemEnumerationMode class. Full code after the jump. Download FileSystemTree_enumerationMode_test.zip The following example filters the items in the FileSystemTree control so only [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/13/toggling-file-and-folder-visibility-on-a-filesystemtree-control-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Programmatically scrolling to a selected node in the FileSystemTree control in Adobe AIR</title>
		<link>http://airexamples.com/2008/12/13/programmatically-scrolling-to-a-selected-node-in-the-filesystemtree-control-in-adobe-air/</link>
		<comments>http://airexamples.com/2008/12/13/programmatically-scrolling-to-a-selected-node-in-the-filesystemtree-control-in-adobe-air/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 18:41:42 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[FileSystemTree]]></category>
		<category><![CDATA[findIndex()]]></category>
		<category><![CDATA[nativePath]]></category>
		<category><![CDATA[openSubdirectory()]]></category>
		<category><![CDATA[scrollToIndex]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=53</guid>
		<description><![CDATA[The following example shows how you can automatically scroll to a node in an Adobe AIR FileSystemTree control by using the openSubdirectory(), findIndex(), and scrollToIndex() methods. Full code after the jump. Download FileSystemTree_scrollToIndex_test.zip &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2008/12/13/programmatically-scrolling-to-a-selected-node-in-the-filesystemtree-control-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;FileSystemTree_scrollToIndex_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; verticalAlign=&#34;middle&#34;&#62; &#160; &#60;mx:Script&#62; &#60;![CDATA[ private function btn_click(evt:Event):void { var f:File = File.desktopDirectory; [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/13/programmatically-scrolling-to-a-selected-node-in-the-filesystemtree-control-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Programmatically opening subdirectories on a FileSystemTree control in Adobe AIR</title>
		<link>http://airexamples.com/2008/12/13/programmatically-opening-subdirectories-on-a-filesystemtree-control-in-adobe-air/</link>
		<comments>http://airexamples.com/2008/12/13/programmatically-opening-subdirectories-on-a-filesystemtree-control-in-adobe-air/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 18:29:46 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[FileSystemTree]]></category>
		<category><![CDATA[openSubdirectory()]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=49</guid>
		<description><![CDATA[The following example shows how you can open a subdirectory on a Adobe AIR FileSystemTree by calling the openSubdirectory() method and passing in a native file system path. Full code after the jump. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2008/12/13/programmatically-opening-subdirectories-on-a-filesystemtree-control-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;FileSystemTree_openSubdirectory_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; verticalAlign=&#34;middle&#34;&#62; &#160; &#60;mx:ApplicationControlBar dock=&#34;true&#34;&#62; &#60;mx:Button id=&#34;btn&#34; label=&#34;Open application directory&#34; click=&#34;tree.openSubdirectory(File.applicationDirectory.nativePath);&#34; /&#62; &#60;/mx:ApplicationControlBar&#62; [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/13/programmatically-opening-subdirectories-on-a-filesystemtree-control-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Detecting when the root directory changes on a FileSystemTree in Adobe AIR</title>
		<link>http://airexamples.com/2008/12/13/detecting-when-the-root-directory-changes-on-a-filesystemtree-in-adobe-air/</link>
		<comments>http://airexamples.com/2008/12/13/detecting-when-the-root-directory-changes-on-a-filesystemtree-in-adobe-air/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 18:11:01 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[FileSystemTree]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[directoryChange]]></category>
		<category><![CDATA[File]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=43</guid>
		<description><![CDATA[In a previous example, &#8220;Setting the root directory on a FileSystemTree control in Adobe AIR&#8221;, we saw how you could set the root directory on a FileSystemTree control by setting the directory property to a File object. The following example shows how you can detect when the directory property changes on an Adobe AIR FileSystemTree [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/13/detecting-when-the-root-directory-changes-on-a-filesystemtree-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting the root directory on a FileSystemTree control in Adobe AIR</title>
		<link>http://airexamples.com/2008/12/13/setting-the-root-directory-on-a-filesystemtree-control-in-adobe-air/</link>
		<comments>http://airexamples.com/2008/12/13/setting-the-root-directory-on-a-filesystemtree-control-in-adobe-air/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 18:09:47 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[FileSystemTree]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[File]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=36</guid>
		<description><![CDATA[The following example shows how you can set the initial directory for the Adobe AIR FileSystemTree control by setting the directory property to a File object, which in this case is the user&#8217;s document&#8217;s directory. Full code after the jump. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2008/12/13/setting-the-root-directory-on-a-filesystemtree-control-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;FileSystemTree_directory_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; verticalAlign=&#34;middle&#34; title=&#34;{tree.directory.nativePath}&#34;&#62; &#160; &#60;mx:FileSystemTree id=&#34;tree&#34; [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/13/setting-the-root-directory-on-a-filesystemtree-control-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
