<?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"
	>
<channel>
	<title>Comments on: QueueLoader AS3 rev27</title>
	<atom:link href="http://blog.hydrotik.com/2007/12/13/queueloader-as3-rev27/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.hydrotik.com/2007/12/13/queueloader-as3-rev27/</link>
	<description>flash development and creative playground of Donovan Adams</description>
	<pubDate>Sun, 27 Jul 2008 07:29:13 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: djdonovan</title>
		<link>http://blog.hydrotik.com/2007/12/13/queueloader-as3-rev27/#comment-3356</link>
		<dc:creator>djdonovan</dc:creator>
		<pubDate>Thu, 14 Feb 2008 17:36:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hydrotik.com/2007/12/13/queueloader-as3-rev27/#comment-3356</guid>
		<description>Looks good man!

Been on my list for a while, saved me the trouble:)</description>
		<content:encoded><![CDATA[<p>Looks good man!</p>
<p>Been on my list for a while, saved me the trouble:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cedric M. (aka maddec)</title>
		<link>http://blog.hydrotik.com/2007/12/13/queueloader-as3-rev27/#comment-3355</link>
		<dc:creator>Cedric M. (aka maddec)</dc:creator>
		<pubDate>Thu, 14 Feb 2008 17:21:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hydrotik.com/2007/12/13/queueloader-as3-rev27/#comment-3355</guid>
		<description>Hi Donovan,

Related to queue loader, I don't know if you heard about this project:
http://code.google.com/p/masapi/

It is at a very advanced stage and I use it without any problem in commercial projects for months now. 

I'm sure it can be interesting for you and for the QueueLoader users.

Best regards.
maddec</description>
		<content:encoded><![CDATA[<p>Hi Donovan,</p>
<p>Related to queue loader, I don&#8217;t know if you heard about this project:<br />
<a href="http://code.google.com/p/masapi/" rel="nofollow">http://code.google.com/p/masapi/</a></p>
<p>It is at a very advanced stage and I use it without any problem in commercial projects for months now. </p>
<p>I&#8217;m sure it can be interesting for you and for the QueueLoader users.</p>
<p>Best regards.<br />
maddec</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: franck</title>
		<link>http://blog.hydrotik.com/2007/12/13/queueloader-as3-rev27/#comment-3155</link>
		<dc:creator>franck</dc:creator>
		<pubDate>Fri, 08 Feb 2008 18:01:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hydrotik.com/2007/12/13/queueloader-as3-rev27/#comment-3155</guid>
		<description>hi donovan

I've checked examples, and even with event callback I just get the same error, trying to load bmp or xml...</description>
		<content:encoded><![CDATA[<p>hi donovan</p>
<p>I&#8217;ve checked examples, and even with event callback I just get the same error, trying to load bmp or xml&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: djdonovan</title>
		<link>http://blog.hydrotik.com/2007/12/13/queueloader-as3-rev27/#comment-3154</link>
		<dc:creator>djdonovan</dc:creator>
		<pubDate>Fri, 08 Feb 2008 17:55:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hydrotik.com/2007/12/13/queueloader-as3-rev27/#comment-3154</guid>
		<description>I don't see your complete event callback.  Basic examples can be found at the link below, including loading XML.

http://code.google.com/p/queueloader-as3/wiki/QueueLoaderGuide</description>
		<content:encoded><![CDATA[<p>I don&#8217;t see your complete event callback.  Basic examples can be found at the link below, including loading XML.</p>
<p><a href="http://code.google.com/p/queueloader-as3/wiki/QueueLoaderGuide" rel="nofollow">http://code.google.com/p/queueloader-as3/wiki/QueueLoaderGuide</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: franck</title>
		<link>http://blog.hydrotik.com/2007/12/13/queueloader-as3-rev27/#comment-3151</link>
		<dc:creator>franck</dc:creator>
		<pubDate>Fri, 08 Feb 2008 15:32:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hydrotik.com/2007/12/13/queueloader-as3-rev27/#comment-3151</guid>
		<description>Hi
Can't make it working!

I use flashdevelop + queueloader-as3-rev27

I import queueLoader classe in my Main class wich extends sprite and wrote this code : 

var _oLoader:QueueLoader = new QueueLoader();
var _xml:XML;

_oLoader.addItem("http://localhost/slideshow/banner01.xml", null, {title:"XML", mimeType:QueueLoader.FILE_XML});

_oLoader.addEventListener(QueueLoaderEvent.ITEM_COMPLETE, onItemComplete,false, 0, true);

_oLoader.execute();


Then I get this error : 
D:\workspace_flashdevelop\as3_classes\classes\com\hydrotik\utils\QueueLoaderEvent.as(86): col: 143 Error: Initialiseur de paramètre inconnu, ou ce n'est pas une constante de compilation.

The problem is with "int = QueueLoader.FILE_IMAGE" param in QueueLoaderEvent.as(86)
Error reporting said that it's an unknown init param or a compilation constant ...

Any Issue?</description>
		<content:encoded><![CDATA[<p>Hi<br />
Can&#8217;t make it working!</p>
<p>I use flashdevelop + queueloader-as3-rev27</p>
<p>I import queueLoader classe in my Main class wich extends sprite and wrote this code : </p>
<p>var _oLoader:QueueLoader = new QueueLoader();<br />
var _xml:XML;</p>
<p>_oLoader.addItem(&#8221;http://localhost/slideshow/banner01.xml&#8221;, null, {title:&#8221;XML&#8221;, mimeType:QueueLoader.FILE_XML});</p>
<p>_oLoader.addEventListener(QueueLoaderEvent.ITEM_COMPLETE, onItemComplete,false, 0, true);</p>
<p>_oLoader.execute();</p>
<p>Then I get this error :<br />
D:\workspace_flashdevelop\as3_classes\classes\com\hydrotik\utils\QueueLoaderEvent.as(86): col: 143 Error: Initialiseur de paramètre inconnu, ou ce n&#8217;est pas une constante de compilation.</p>
<p>The problem is with &#8220;int = QueueLoader.FILE_IMAGE&#8221; param in QueueLoaderEvent.as(86)<br />
Error reporting said that it&#8217;s an unknown init param or a compilation constant &#8230;</p>
<p>Any Issue?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesse</title>
		<link>http://blog.hydrotik.com/2007/12/13/queueloader-as3-rev27/#comment-2941</link>
		<dc:creator>Jesse</dc:creator>
		<pubDate>Fri, 01 Feb 2008 00:52:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hydrotik.com/2007/12/13/queueloader-as3-rev27/#comment-2941</guid>
		<description>In QueueLoader &#62; addItemAt

What purpose does the conditional serve for:
if(isLoading &#38;&#38; !isStarted &#38;&#38; !isStopped) _max++;

Cause if you add an item during the load process, the max never gets updated and you run the risk of queue percentages greater than 100%, which should never happen... right?

What kind of impact would you have if you changed it to:
_max++</description>
		<content:encoded><![CDATA[<p>In QueueLoader &gt; addItemAt</p>
<p>What purpose does the conditional serve for:<br />
if(isLoading &amp;&amp; !isStarted &amp;&amp; !isStopped) _max++;</p>
<p>Cause if you add an item during the load process, the max never gets updated and you run the risk of queue percentages greater than 100%, which should never happen&#8230; right?</p>
<p>What kind of impact would you have if you changed it to:<br />
_max++</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: djdonovan</title>
		<link>http://blog.hydrotik.com/2007/12/13/queueloader-as3-rev27/#comment-2764</link>
		<dc:creator>djdonovan</dc:creator>
		<pubDate>Sat, 26 Jan 2008 02:39:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hydrotik.com/2007/12/13/queueloader-as3-rev27/#comment-2764</guid>
		<description>Sounds good. send on over!</description>
		<content:encoded><![CDATA[<p>Sounds good. send on over!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: djdonovan</title>
		<link>http://blog.hydrotik.com/2007/12/13/queueloader-as3-rev27/#comment-2763</link>
		<dc:creator>djdonovan</dc:creator>
		<pubDate>Sat, 26 Jan 2008 02:38:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hydrotik.com/2007/12/13/queueloader-as3-rev27/#comment-2763</guid>
		<description>There should be an example of how to use the application domain on the wiki.</description>
		<content:encoded><![CDATA[<p>There should be an example of how to use the application domain on the wiki.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesse</title>
		<link>http://blog.hydrotik.com/2007/12/13/queueloader-as3-rev27/#comment-2730</link>
		<dc:creator>Jesse</dc:creator>
		<pubDate>Thu, 24 Jan 2008 10:50:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hydrotik.com/2007/12/13/queueloader-as3-rev27/#comment-2730</guid>
		<description>What do you say we add some .json goodness to this biznatch?!

&#62;&#62; loadNextItem() NO TYPE DETECTED!

I managed to use FILE_CSS in order to get the right loaders, but I still had to add a line to QueueLoader to recognize the extension.

if(currItem.url.match(".json") != null) _currType = FILE_CSS;

While I'm not sure having to go as far as http://www.flash-db.com/Tutorials/loadingAS3/loadingData.php?page=1 to get URL-encoded data is needed, I think that raw text is an obvious oversight here.

Maybe instead of judging file-types like Corey Delaney's sunnies, we could have a default straight up load... just a thought.

Keep rockn' it like your parents are out of town!

J&#124;G</description>
		<content:encoded><![CDATA[<p>What do you say we add some .json goodness to this biznatch?!</p>
<p>&gt;&gt; loadNextItem() NO TYPE DETECTED!</p>
<p>I managed to use FILE_CSS in order to get the right loaders, but I still had to add a line to QueueLoader to recognize the extension.</p>
<p>if(currItem.url.match(&#8221;.json&#8221;) != null) _currType = FILE_CSS;</p>
<p>While I&#8217;m not sure having to go as far as <a href="http://www.flash-db.com/Tutorials/loadingAS3/loadingData.php?page=1" rel="nofollow">http://www.flash-db.com/Tutorials/loadingAS3/loadingData.php?page=1</a> to get URL-encoded data is needed, I think that raw text is an obvious oversight here.</p>
<p>Maybe instead of judging file-types like Corey Delaney&#8217;s sunnies, we could have a default straight up load&#8230; just a thought.</p>
<p>Keep rockn&#8217; it like your parents are out of town!</p>
<p>J|G</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oscar</title>
		<link>http://blog.hydrotik.com/2007/12/13/queueloader-as3-rev27/#comment-2675</link>
		<dc:creator>Oscar</dc:creator>
		<pubDate>Mon, 21 Jan 2008 12:37:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.hydrotik.com/2007/12/13/queueloader-as3-rev27/#comment-2675</guid>
		<description>Hi, 

It seems that QueueLoader load SWF Files into the currentDomain and there is no way to load it into another or new ApplicationDomains.

Is it possible, to load swf Files into different Application-Domains? 

Thanks in advance</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>It seems that QueueLoader load SWF Files into the currentDomain and there is no way to load it into another or new ApplicationDomains.</p>
<p>Is it possible, to load swf Files into different Application-Domains? </p>
<p>Thanks in advance</p>
]]></content:encoded>
	</item>
</channel>
</rss>
