Hi,
I have just started working with Haxe today and was trying to load multiple bundles that I created using openFL (openfl process 1.swf) but couldn’t find anything like LoadQueue for the loader.
This works fine for the first bundle -
loader = new Loader ();
loader.contentLoaderInfo.addEventListener (ProgressEvent.PROGRESS, loader_onProgress);
loader.contentLoaderInfo.addEventListener (IOErrorEvent.IO_ERROR, loader_onError);
loader.contentLoaderInfo.addEventListener (Event.COMPLETE, loader_onComplete);
loader.load (new URLRequest (“http://localhost:2000/1.bundle”));
I am looking for something like AssetManifest /LoadManifest which can allow me to load all the bundles and add the respective contents.
Appreciate your help.
Thanks in advance!