<?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: Adobe AIR 1.5 DownloadManager API - download files from web / server to your local drive</title>
	<atom:link href="http://elromdesign.com/blog/2009/01/14/adobe-air-15-downloadmanager-api-download-files-from-web-server-to-your-local-drive/feed/" rel="self" type="application/rss+xml" />
	<link>http://elromdesign.com/blog/2009/01/14/adobe-air-15-downloadmanager-api-download-files-from-web-server-to-your-local-drive/</link>
	<description>Developing Flash Applications</description>
	<pubDate>Sat, 13 Mar 2010 14:17:56 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: elad.ny</title>
		<link>http://elromdesign.com/blog/2009/01/14/adobe-air-15-downloadmanager-api-download-files-from-web-server-to-your-local-drive/comment-page-1/#comment-17339</link>
		<dc:creator>elad.ny</dc:creator>
		<pubDate>Wed, 10 Feb 2010 18:20:10 +0000</pubDate>
		<guid isPermaLink="false">http://elromdesign.com/blog/?p=311#comment-17339</guid>
		<description>Hi Gavri,  the API wasn't built to accommodate what you are trying to do.  Streaming and some of the new HTTP streaming allows you to start at a certain point.</description>
		<content:encoded><![CDATA[<p>Hi Gavri,  the API wasn&#8217;t built to accommodate what you are trying to do.  Streaming and some of the new HTTP streaming allows you to start at a certain point.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gavri</title>
		<link>http://elromdesign.com/blog/2009/01/14/adobe-air-15-downloadmanager-api-download-files-from-web-server-to-your-local-drive/comment-page-1/#comment-17337</link>
		<dc:creator>Gavri</dc:creator>
		<pubDate>Tue, 09 Feb 2010 20:54:05 +0000</pubDate>
		<guid isPermaLink="false">http://elromdesign.com/blog/?p=311#comment-17337</guid>
		<description>Hi,

very useful info.

one question though: lets say I'm saving the bytearray of my loaded file and appending to it on each progress event - now lets say that from some reason the connection is lost.

can i start downloading the remote file from the place  I stopped (passing the ByteArray current positon as an argument)? 

something like URLStream.load() function with an offset arguemet


Thanks

gavri</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>very useful info.</p>
<p>one question though: lets say I&#8217;m saving the bytearray of my loaded file and appending to it on each progress event - now lets say that from some reason the connection is lost.</p>
<p>can i start downloading the remote file from the place  I stopped (passing the ByteArray current positon as an argument)? </p>
<p>something like URLStream.load() function with an offset arguemet</p>
<p>Thanks</p>
<p>gavri</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kat</title>
		<link>http://elromdesign.com/blog/2009/01/14/adobe-air-15-downloadmanager-api-download-files-from-web-server-to-your-local-drive/comment-page-1/#comment-17289</link>
		<dc:creator>Kat</dc:creator>
		<pubDate>Mon, 25 Jan 2010 13:25:19 +0000</pubDate>
		<guid isPermaLink="false">http://elromdesign.com/blog/?p=311#comment-17289</guid>
		<description>I looked for something like this forever! Thanks!</description>
		<content:encoded><![CDATA[<p>I looked for something like this forever! Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: IdeasMX</title>
		<link>http://elromdesign.com/blog/2009/01/14/adobe-air-15-downloadmanager-api-download-files-from-web-server-to-your-local-drive/comment-page-1/#comment-17286</link>
		<dc:creator>IdeasMX</dc:creator>
		<pubDate>Thu, 21 Jan 2010 17:47:42 +0000</pubDate>
		<guid isPermaLink="false">http://elromdesign.com/blog/?p=311#comment-17286</guid>
		<description>Thanks for the code, it will be usefull for one of my projects</description>
		<content:encoded><![CDATA[<p>Thanks for the code, it will be usefull for one of my projects</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhu</title>
		<link>http://elromdesign.com/blog/2009/01/14/adobe-air-15-downloadmanager-api-download-files-from-web-server-to-your-local-drive/comment-page-1/#comment-17259</link>
		<dc:creator>madhu</dc:creator>
		<pubDate>Thu, 31 Dec 2009 06:53:19 +0000</pubDate>
		<guid isPermaLink="false">http://elromdesign.com/blog/?p=311#comment-17259</guid>
		<description>Thanks a million, I am working on this for a day and couldn't solved it. You helped me a lot.

One change I did in code is in the class "ReadDirectoryHelper"
for getting file name you are splitting the path

file = fileCollection[i] as File;
fileSplit = file.nativePath.split(File.separator);
fileName = fileSplit[fileSplit.length-1] as String;

I think no need to split it as we get file name directly from the file object.
fileName = file.name

Thank you,
Madhu P</description>
		<content:encoded><![CDATA[<p>Thanks a million, I am working on this for a day and couldn&#8217;t solved it. You helped me a lot.</p>
<p>One change I did in code is in the class &#8220;ReadDirectoryHelper&#8221;<br />
for getting file name you are splitting the path</p>
<p>file = fileCollection[i] as File;<br />
fileSplit = file.nativePath.split(File.separator);<br />
fileName = fileSplit[fileSplit.length-1] as String;</p>
<p>I think no need to split it as we get file name directly from the file object.<br />
fileName = file.name</p>
<p>Thank you,<br />
Madhu P</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: domain kaydi</title>
		<link>http://elromdesign.com/blog/2009/01/14/adobe-air-15-downloadmanager-api-download-files-from-web-server-to-your-local-drive/comment-page-1/#comment-17257</link>
		<dc:creator>domain kaydi</dc:creator>
		<pubDate>Wed, 30 Dec 2009 07:44:01 +0000</pubDate>
		<guid isPermaLink="false">http://elromdesign.com/blog/?p=311#comment-17257</guid>
		<description>thank you for this article. Ive looked at the end.</description>
		<content:encoded><![CDATA[<p>thank you for this article. Ive looked at the end.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kyle</title>
		<link>http://elromdesign.com/blog/2009/01/14/adobe-air-15-downloadmanager-api-download-files-from-web-server-to-your-local-drive/comment-page-1/#comment-17164</link>
		<dc:creator>Kyle</dc:creator>
		<pubDate>Mon, 02 Nov 2009 15:46:11 +0000</pubDate>
		<guid isPermaLink="false">http://elromdesign.com/blog/?p=311#comment-17164</guid>
		<description>Elad,
Thanks for the utility!  Is there any way to pause and restart a download? Or re-start a broken download? I am using it to download files &gt; 5Gb.

Kyle</description>
		<content:encoded><![CDATA[<p>Elad,<br />
Thanks for the utility!  Is there any way to pause and restart a download? Or re-start a broken download? I am using it to download files &gt; 5Gb.</p>
<p>Kyle</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: driver87</title>
		<link>http://elromdesign.com/blog/2009/01/14/adobe-air-15-downloadmanager-api-download-files-from-web-server-to-your-local-drive/comment-page-1/#comment-17150</link>
		<dc:creator>driver87</dc:creator>
		<pubDate>Thu, 22 Oct 2009 09:07:38 +0000</pubDate>
		<guid isPermaLink="false">http://elromdesign.com/blog/?p=311#comment-17150</guid>
		<description>Thank you all very, very much! ,</description>
		<content:encoded><![CDATA[<p>Thank you all very, very much! ,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: elad.ny</title>
		<link>http://elromdesign.com/blog/2009/01/14/adobe-air-15-downloadmanager-api-download-files-from-web-server-to-your-local-drive/comment-page-1/#comment-16961</link>
		<dc:creator>elad.ny</dc:creator>
		<pubDate>Wed, 22 Jul 2009 14:35:01 +0000</pubDate>
		<guid isPermaLink="false">http://elromdesign.com/blog/?p=311#comment-16961</guid>
		<description>Hi Avi,  my team and I can definitely help you with your project. Please send me an email through the site form: http://elromdesign.com/?page=contact.</description>
		<content:encoded><![CDATA[<p>Hi Avi,  my team and I can definitely help you with your project. Please send me an email through the site form: <a href="http://elromdesign.com/?page=contact"  rel="nofollow">http://elromdesign.com/?page=contact</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: avi</title>
		<link>http://elromdesign.com/blog/2009/01/14/adobe-air-15-downloadmanager-api-download-files-from-web-server-to-your-local-drive/comment-page-1/#comment-16960</link>
		<dc:creator>avi</dc:creator>
		<pubDate>Wed, 22 Jul 2009 13:11:58 +0000</pubDate>
		<guid isPermaLink="false">http://elromdesign.com/blog/?p=311#comment-16960</guid>
		<description>hi!!!!!!!!
Plz, can u give me the code for downloading and playing  video files(.swf format and around 100 in number) in video player for flex builder3.


Also, can such application be made(in AIR and Flex builder3) for completely offline use i.e we are storing videos directly in database(no downloading from server) and retrieving and playing in video player in offline mode .</description>
		<content:encoded><![CDATA[<p>hi!!!!!!!!<br />
Plz, can u give me the code for downloading and playing  video files(.swf format and around 100 in number) in video player for flex builder3.</p>
<p>Also, can such application be made(in AIR and Flex builder3) for completely offline use i.e we are storing videos directly in database(no downloading from server) and retrieving and playing in video player in offline mode .</p>
]]></content:encoded>
	</item>
</channel>
</rss>
