<?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: Reading Zip files with Actionscript 3</title>
	<atom:link href="http://www.dreaminginflash.com/2007/09/24/reading-zip-files-with-actionscript-3/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dreaminginflash.com/2007/09/24/reading-zip-files-with-actionscript-3/</link>
	<description>There is no universally agreed-upon biological definition of dreaming</description>
	<lastBuildDate>Wed, 28 Jul 2010 11:46:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: gadgeteer</title>
		<link>http://www.dreaminginflash.com/2007/09/24/reading-zip-files-with-actionscript-3/comment-page-1/#comment-1130</link>
		<dc:creator>gadgeteer</dc:creator>
		<pubDate>Tue, 20 Jul 2010 13:30:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.dreaminginflash.com/?p=10#comment-1130</guid>
		<description>Could you use this library in a web based swf file to have the swf read all of the resources it needs (images,videos,xml) from a zip file? ... better yet, could you implement a generic swf that when passed a zip file read an xml specification file (manifest.xml?) for which resource in the zip file is the actually flash object to load and run?</description>
		<content:encoded><![CDATA[<p>Could you use this library in a web based swf file to have the swf read all of the resources it needs (images,videos,xml) from a zip file? &#8230; better yet, could you implement a generic swf that when passed a zip file read an xml specification file (manifest.xml?) for which resource in the zip file is the actually flash object to load and run?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mmbee</title>
		<link>http://www.dreaminginflash.com/2007/09/24/reading-zip-files-with-actionscript-3/comment-page-1/#comment-1081</link>
		<dc:creator>mmbee</dc:creator>
		<pubDate>Thu, 25 Feb 2010 19:16:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.dreaminginflash.com/?p=10#comment-1081</guid>
		<description>Great Job. My problem is resolved. I&#039;m able to unzip the xml file and get the data. thank you so much.</description>
		<content:encoded><![CDATA[<p>Great Job. My problem is resolved. I&#8217;m able to unzip the xml file and get the data. thank you so much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shine india</title>
		<link>http://www.dreaminginflash.com/2007/09/24/reading-zip-files-with-actionscript-3/comment-page-1/#comment-1075</link>
		<dc:creator>shine india</dc:creator>
		<pubDate>Thu, 11 Feb 2010 11:22:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.dreaminginflash.com/?p=10#comment-1075</guid>
		<description>Its useful! nice thanx for the code</description>
		<content:encoded><![CDATA[<p>Its useful! nice thanx for the code</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander Cabezas</title>
		<link>http://www.dreaminginflash.com/2007/09/24/reading-zip-files-with-actionscript-3/comment-page-1/#comment-972</link>
		<dc:creator>Alexander Cabezas</dc:creator>
		<pubDate>Mon, 06 Jul 2009 21:42:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.dreaminginflash.com/?p=10#comment-972</guid>
		<description>Sorry, i&#039;m new in air development with javascript.

I replace:
var zipFile = new air.ZipFile(datastream);
===================
For this:
var zipFile = new window.runtime.nochump.util.zip.ZipFile(datastream);</description>
		<content:encoded><![CDATA[<p>Sorry, i&#8217;m new in air development with javascript.</p>
<p>I replace:<br />
var zipFile = new air.ZipFile(datastream);<br />
===================<br />
For this:<br />
var zipFile = new window.runtime.nochump.util.zip.ZipFile(datastream);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander Cabezas</title>
		<link>http://www.dreaminginflash.com/2007/09/24/reading-zip-files-with-actionscript-3/comment-page-1/#comment-971</link>
		<dc:creator>Alexander Cabezas</dc:creator>
		<pubDate>Mon, 06 Jul 2009 21:21:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.dreaminginflash.com/?p=10#comment-971</guid>
		<description>I&#039;m using this library in air javascript application, so when i try to use this code i get the following error:

TypeError: Value undefined is not a constructor. Cannot be used with new.

My code is:

	var urlStream = new air.URLStream();
	urlStream.addEventListener(air.Event.COMPLETE, _completeHandler);
	
	urlStream.load( new air.URLRequest( url ) );
	
	function _completeHandler(event){
		air.Introspector.Console.log(event);
		var datastream = air.URLStream(event.target);
		var zipFile = new air.ZipFile(datastream);
		for(var i = 0; i &lt;= zipFile.entries.length; i++) {
		  var entry = zipFile.entries[i];
		  air.Introspector.Console.log(entry.name);
		}		
	}</description>
		<content:encoded><![CDATA[<p>I&#8217;m using this library in air javascript application, so when i try to use this code i get the following error:</p>
<p>TypeError: Value undefined is not a constructor. Cannot be used with new.</p>
<p>My code is:</p>
<p>	var urlStream = new air.URLStream();<br />
	urlStream.addEventListener(air.Event.COMPLETE, _completeHandler);</p>
<p>	urlStream.load( new air.URLRequest( url ) );</p>
<p>	function _completeHandler(event){<br />
		air.Introspector.Console.log(event);<br />
		var datastream = air.URLStream(event.target);<br />
		var zipFile = new air.ZipFile(datastream);<br />
		for(var i = 0; i &lt;= zipFile.entries.length; i++) {<br />
		  var entry = zipFile.entries[i];<br />
		  air.Introspector.Console.log(entry.name);<br />
		}<br />
	}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Help needed</title>
		<link>http://www.dreaminginflash.com/2007/09/24/reading-zip-files-with-actionscript-3/comment-page-1/#comment-873</link>
		<dc:creator>Help needed</dc:creator>
		<pubDate>Thu, 09 Apr 2009 10:42:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.dreaminginflash.com/?p=10#comment-873</guid>
		<description>How to implement this fzip i am new to as not sure how to set it up if u can show me a woking example in a mxml it ll be great. going nuts setting up fzip... fairly new to as and not sure how to use classes and stuff. pls help</description>
		<content:encoded><![CDATA[<p>How to implement this fzip i am new to as not sure how to set it up if u can show me a woking example in a mxml it ll be great. going nuts setting up fzip&#8230; fairly new to as and not sure how to use classes and stuff. pls help</p>
]]></content:encoded>
	</item>
</channel>
</rss>
