[Flashcoders] preloading multiple swfs with moviecliploader

2006-04-07 Thread Michele Moore
I know that this is a post from back in February, but I’m having the same issue. I’ll try the ideas put forth here so far, but I wanted to respond to Andreas’s post to see if maybe anyone can elaborate. The issue for me is tracking the items when using one object for loading. If I’m

RE: [Flashcoders] preloading multiple swfs with moviecliploader

2006-04-07 Thread Steven Sacks
that total area. HTH, Steven -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michele Moore Sent: Friday, April 07, 2006 1:37 PM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] preloading multiple swfs with moviecliploader I

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

[Flashcoders] preloading multiple swfs with moviecliploader

2006-02-21 Thread Randy Tinfow
Has anyone been able to preload multiple swfs concurrently and keep track of progress globally rather than for individual files? We can do it sequentially, but that ain't pretty for the user when they have to endure 12 serial progress bars. TIA, Randy Tinfow IMAGE PLANT

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
@chattyfig.figleaf.com Subject: [Flashcoders] preloading multiple swfs with moviecliploader Has anyone been able to preload multiple swfs concurrently and keep track of progress globally rather than for individual files? We can do it sequentially, but that ain't pretty for the user when they have to endure 12

RE: [Flashcoders] preloading multiple swfs with moviecliploader

2006-02-21 Thread jim
@chattyfig.figleaf.com Subject: [Flashcoders] preloading multiple swfs with moviecliploader Has anyone been able to preload multiple swfs concurrently and keep track of progress globally rather than for individual files? We can do it sequentially, but that ain't pretty for the user when they have