Hi Raf.
> @Arthur: Are there any custom settings in the bulkloader for
> applicationdomains, or a way to add them when loading swf's?
Yup, there is. The properties object passed to add can take a context
(either a LoaderContext or a SoundLoaderContext) that will specify the
correct applicationDomain. Sample usage:
var myContext : LoaderContext = new LoaderContext();
myContext.applicationDomain = ApplicationDomain.currentDomain;
loader.add("some.swf", "context": myContext);
[]s
Arthur Debert