QueueLoader rev33
UPDATE Latest Update and Source!
Made some fixes and updates per the helpful people on Google code as well as Richard Willis and Romuald Quantin. Google code site have been updated as well.
Thanks guys!
UPDATE Latest Update and Source!
Made some fixes and updates per the helpful people on Google code as well as Richard Willis and Romuald Quantin. Google code site have been updated as well.
Thanks guys!
© 2009, hydrotik | flash development | actionscript | creative. All Rights Reserved.
July 29th, 2008 at 9:17 am
Hi,
That's great, I've updated my sources and it is working just well.
Thanks for your time on that.
Romu
August 1st, 2008 at 10:30 am
You're the man Don! Hey, is the SVN out of date? I seem to be missing ITEM_INIT and QUEUE_INIT from QueLoaderEvent - …but I'll check this download here : )
August 1st, 2008 at 10:34 am
ah, I see - you renamed the *_COMPLETE - cool
August 1st, 2008 at 1:36 pm
Yeah I renamed it back to COMPLETE as it reflects the AS3 event timing. Enjoy!
August 21st, 2008 at 1:40 am
Hi,
I've tried your queueLoader and it's great … but i've a question …
Is there a way to access to the loader's content when you load a swf file?
I mean, if i want to acces to a public method from the loaded swf …xhat do i have to do ?
At the moment, i've added at line 633 of the QueueLoader class :
currItem.targ.loader = _loader;
Is there a best way to do that ?
Thanks a lot
Ghislain
August 24th, 2008 at 8:49 am
event.file.myMethod();
Or you can use Application Domain to access library references. Check out the wiki on google code for info on that.
September 4th, 2008 at 9:16 am
I LOVE IT! I LOVE IT! It has made my job much more satisfying, because it worked!
I just found the "smoothing:true" parameter. Just what I was needing, and it couldn't be easier, but I DID have a hard time finding it. Is there documentation somewhere that I missed?
Keep it up.
-BH
October 3rd, 2008 at 10:25 am
Thanks for the great utility. Question: Is it possible to prioritize an item in the queue that has not loaded yet? Meaning can you bump an item to the top of the list to start loading it if it hasn't loaded yet?
October 3rd, 2008 at 11:00 am
It is possible, however in all honesty I haven't done it myself. You can do queueloader.sort(); and use the same functionality of the built in Array sort() method.
October 21st, 2008 at 7:44 pm
Per my original question:
"Thanks for the great utility. Question: Is it possible to prioritize an item in the queue that has not loaded yet? Meaning can you bump an item to the top of the list to start loading it if it hasn’t loaded yet?"
Does the reorder() function achieve the result I am looking for? Provided I know the index of the item I wish to move to the top of the queue?
Thank you
October 21st, 2008 at 7:55 pm
sorting is simply an extensions of the functionality of the array sorting method. Meaning the same process for sorting an array will work for sorting the queue. I'm working on new features and plan to add a simpler method for shifting an item around.
October 29th, 2008 at 11:59 pm
New Version has been posted!
Latest Update and Source!