<?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 on: File and FileStream within Apollo &#8211; full source code</title>
	<atom:link href="http://blog.everythingflex.com/2007/03/19/file-and-filestream-within-apollo-full-source-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.everythingflex.com/2007/03/19/file-and-filestream-within-apollo-full-source-code/</link>
	<description>News and Information about Adobe Flex &#38; Adobe AIR by Rich Tretola</description>
	<lastBuildDate>Wed, 17 Mar 2010 19:50:11 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Nancy Gill</title>
		<link>http://blog.everythingflex.com/2007/03/19/file-and-filestream-within-apollo-full-source-code/comment-page-1/#comment-161</link>
		<dc:creator>Nancy Gill</dc:creator>
		<pubDate>Fri, 23 Nov 2007 17:23:10 +0000</pubDate>
		<guid isPermaLink="false">http://control-access8.com/~eflex/wordpress/?p=239#comment-161</guid>
		<description>Was the No Disk error ever solved?  I am getting the same thing in my registered copy of FlexBuilder 2.</description>
		<content:encoded><![CDATA[<p>Was the No Disk error ever solved?  I am getting the same thing in my registered copy of FlexBuilder 2.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: everythingflex</title>
		<link>http://blog.everythingflex.com/2007/03/19/file-and-filestream-within-apollo-full-source-code/comment-page-1/#comment-159</link>
		<dc:creator>everythingflex</dc:creator>
		<pubDate>Wed, 20 Jun 2007 22:54:27 +0000</pubDate>
		<guid isPermaLink="false">http://control-access8.com/~eflex/wordpress/?p=239#comment-159</guid>
		<description>This application was built for the Apollo alpha and does not play nicely with the AIR beta and many things have changed between builds.</description>
		<content:encoded><![CDATA[<p>This application was built for the Apollo alpha and does not play nicely with the AIR beta and many things have changed between builds.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MatteoNY</title>
		<link>http://blog.everythingflex.com/2007/03/19/file-and-filestream-within-apollo-full-source-code/comment-page-1/#comment-160</link>
		<dc:creator>MatteoNY</dc:creator>
		<pubDate>Wed, 20 Jun 2007 22:16:03 +0000</pubDate>
		<guid isPermaLink="false">http://control-access8.com/~eflex/wordpress/?p=239#comment-160</guid>
		<description>The code works but I had to change the
&quot;appStorageDirectory&quot; to:&quot;applicationStorageDirectory&quot;
As well as the WindowedApplication used by Flex3.

I&#039;m getting an error when I load &quot;Windows - No Disk&quot; Exception Processing Message c00000013 Parameters 75b6bf9c 4 75b6.... [cancel] [Try Again] [Continue]. If you continue the program works. I commented out the init() function to see if that would help but I am still getting the error. I hope this helps.</description>
		<content:encoded><![CDATA[<p>The code works but I had to change the<br />
&#8220;appStorageDirectory&#8221; to:&#8221;applicationStorageDirectory&#8221;<br />
As well as the WindowedApplication used by Flex3.</p>
<p>I&#8217;m getting an error when I load &#8220;Windows &#8211; No Disk&#8221; Exception Processing Message c00000013 Parameters 75b6bf9c 4 75b6&#8230;. [cancel] [Try Again] [Continue]. If you continue the program works. I commented out the init() function to see if that would help but I am still getting the error. I hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: everythingflex</title>
		<link>http://blog.everythingflex.com/2007/03/19/file-and-filestream-within-apollo-full-source-code/comment-page-1/#comment-158</link>
		<dc:creator>everythingflex</dc:creator>
		<pubDate>Tue, 27 Mar 2007 08:25:45 +0000</pubDate>
		<guid isPermaLink="false">http://control-access8.com/~eflex/wordpress/?p=239#comment-158</guid>
		<description>Well, it is the way to get the path to a file.  The two functions are looking at the same folder but different files.  The loadFile function gets a reference to the selected filename within the Files folder.

var file:File = File.appStorageDirectory;
file = file.resolve(”Files/” + fdg.selectedItem.name);

The saveFile function gets a refernce to the new filename within the Files folder.

var file:File = File.appStorageDirectory.resolve(”Files/” + newFileName.replace(myPattern,’_&#039;) + “.txt”);</description>
		<content:encoded><![CDATA[<p>Well, it is the way to get the path to a file.  The two functions are looking at the same folder but different files.  The loadFile function gets a reference to the selected filename within the Files folder.</p>
<p>var file:File = File.appStorageDirectory;<br />
file = file.resolve(”Files/” + fdg.selectedItem.name);</p>
<p>The saveFile function gets a refernce to the new filename within the Files folder.</p>
<p>var file:File = File.appStorageDirectory.resolve(”Files/” + newFileName.replace(myPattern,’_&#8217;) + “.txt”);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Critter</title>
		<link>http://blog.everythingflex.com/2007/03/19/file-and-filestream-within-apollo-full-source-code/comment-page-1/#comment-157</link>
		<dc:creator>Critter</dc:creator>
		<pubDate>Tue, 27 Mar 2007 03:57:15 +0000</pubDate>
		<guid isPermaLink="false">http://control-access8.com/~eflex/wordpress/?p=239#comment-157</guid>
		<description>what is the purpose of this line:
fdg.directory = File.appStorageDirectory.resolve(&quot;Files/&quot;)

in both functions?</description>
		<content:encoded><![CDATA[<p>what is the purpose of this line:<br />
fdg.directory = File.appStorageDirectory.resolve(&#8221;Files/&#8221;)</p>
<p>in both functions?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

