actionscript 3 - Flash/AS3 - is there a limit to the number of simultaneous URLLoader.load() requests? -


All,

I am working on a Flash / AS3 project which has many URLLoader.load Makes (requests).

Should I queue them so that there is only one open request at any time? Or, is it a good practice to allow many open requests?

Is there a limit to the number of open requests?

(I'm assuming that I'm UI).

I have run a test locally with requests from 5, and it works just fine. But I need to make sure that the app will work in the area for older PCs, older browsers, browsers with many open tabs.

Thank you in advance for any advice and insights!

I was in this problem many times when I was trying to load images of a ton. They were all local, so I queued them with the loader. Hours of debugging of rows, why images are not blank: S

I'm not sure the boundary is mentioned anywhere, but I found (if memory works) about 30 give me problems After that and I think it will reuse the old connection: so if you have 100 loads () calls, then only the last 30 will be loaded.

Normally I am about 10 lines in a bar, then loads are completed as they are complete, there is no real problem with many connections - although they start to start CPU power etc. Will give

If you want to ignore it, then check for some such bulk loaders:

Comments