RE: [Flashcoders] PreLoading Multiple SWFs

2007-08-16 Thread Alain Rousseau
A nice way to preload without having the files playing is to use LoadVars. var lvLoader:LoadVars = new LoadVars(); lvLoader.load(file.swf); // or any other file you want to preload it will load practically any file type and the data will be in the cache, so no need to use MovieClipLoader or

Re: [Flashcoders] PreLoading Multiple SWFs

2007-08-16 Thread John VanHorn
http://www.betriebsraum.de/blog/downloads check out the QueueLoader class at the bottom of the page. On 8/16/07, Shawn Steward [EMAIL PROTECTED] wrote: I'm working on a flash presentation that is quite lengthy that ends up around 16 megs. It is about 20 minutes long. It is broken up into

Re: [Flashcoders] PreLoading Multiple SWFs

2007-08-16 Thread Marcelo de Moraes Serpa
The use of LoadVars to pre-load data is really interesting (and undocumented feature), more if you take into account that it was not designed to be used that way (or was it?). On 8/16/07, John VanHorn [EMAIL PROTECTED] wrote: http://www.betriebsraum.de/blog/downloads check out the

RE: [Flashcoders] PreLoading Multiple SWFs

2007-08-16 Thread Shawn Steward
Well that seems to work great, thanks! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alain Rousseau Sent: Thursday, August 16, 2007 12:23 PM To: flashcoders@chattyfig.figleaf.com Subject: RE: [Flashcoders] PreLoading Multiple SWFs A nice way

RE: [Flashcoders] preloading multiple swfs with moviecliploader

2006-04-07 Thread Steven Sacks
Here's a good solution that is used by many installer applications out there. Take the number of items you are loading and divide your progress bar into that many sections. Then, show the progress of each of those sections. Let's say you were loading 10 files. That means you're breaking up

RE: [Flashcoders] preloading multiple swfs with moviecliploader

2006-02-22 Thread Jim Tann
Of Andreas Rønning Sent: 22 February 2006 02:41 To: Flashcoders mailing list Subject: Re: [Flashcoders] preloading multiple swfs with moviecliploader Wouldn't you just loop through an array of moviecliploaders and check if they were all finished? Or have every onLoadInit call a function that increments

Re: [Flashcoders] preloading multiple swfs with moviecliploader

2006-02-21 Thread Byron Canfield
Well, presuming you're speaking of on-line delivery, you're kind of at the mercy of the browser on that one, as most browsers have a physicial limit of 4 simultaneous connections (download streams), though I think some versions on the Mac allow up to 7, such that any quantity of files greater than

Re: [Flashcoders] preloading multiple swfs with moviecliploader

2006-02-21 Thread Miguel Angel Sánchez
If you need to preload 12 files, you can do it sequentially with only one progress bar. Each loading progress needs to update 1/12 portion of the progress bar with a formula like this: currentPercent = currentMovie.getBytesLoaded() / currentMovie.getBytesTotal(); totalPercent = (loadedFiles

RE: [Flashcoders] preloading multiple swfs with moviecliploader

2006-02-21 Thread jim
Been playing with this myself for a while, this isn't tested much but I think its what you want. If you need a bit more help call. Jim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Randy Tinfow Sent: 21 February 2006 16:43 To:

RE: [Flashcoders] preloading multiple swfs with moviecliploader

2006-02-21 Thread jim
Sorry, didn't put the link in http://www.codesortium.com/demo/loader.zip Jim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of jim Sent: 21 February 2006 23:13 To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] preloading multiple swfs