BulkLoader icon indicating copy to clipboard operation
BulkLoader copied to clipboard

A bulk loading library for Actionscript.

Results 10 BulkLoader issues
Sort by recently updated
recently updated
newest added

mano, como te disse, adicionei o YAMLItem, basicamente peguei o JSONItem do Rinaldi e troquei o parser, é só tu baixar o source do parser em https://github.com/lucasdupin/Simple-AS3-YAML e jogar nas...

Some of the LoadingItems are missing event listeners relating to security, meaning that if there was a problem, the SWF will crash (and if you're using the debug player, you...

If, in the onComplete handler of an item, you call remove() on it, BulkLoader can stall. It comes from _onItemComplete being added using int.MIN_VALUE: ``` item.addEventListener(Event.COMPLETE, _onItemComplete, false, int.MIN_VALUE, true);...

It is working if i use it in flash CS6. But when i use swc in Eclipse+FD5+Flex doesnot work. Is there any support for flex ?

BulkLoader._onAllLoaded() method is calling getStats() even if no logging will be generated, this is wasting resources generating arrays and concatenating strings, and it's all being wasted unless logLevel is LOG_VERBOSE,...

When adding event listeners to the BulkLoader instance and setting the last param (useWeakReferences) to true results in getting no events fired. I could not find this in the docs....

A useful feature addition would be a 'cooldown' or 'backoff' period between retries in LoadingItem which would force the loader to wait a specified amount of time before attempting to...

The retires value is always 1 less than the amount you specify. Set retires to 5, it attempts to load the resource a total of 4 times. Leave as default...

``` var item : LoadingItem if (!props[ID] && _allowsAutoIDFromFileName) item = get(getFileName(url.url)); else item = get(props[ID]); ```

http://code.google.com/p/bulk-loader/source/browse/trunk/src/br/com/stimuli/loading/loadingtypes/LoadingItem.as#262 think, this is not correct Original link: http://code.google.com/p/bulk-loader/issues/detail?id=124