actionscript 3 - RSL, LoaderContext and ApplicationDomain. Can I pass an application Domain to an RSL? -


so, i've few libraries i'm loading rsl's project.

i in flash professional, since it's easiest way give rsl's project fallback.

i'm loading other swf's main swf via loader , need give swf's same application domain works should. swf's use old version of greensock(embeded) , i'm using latest (loaded rsl) , have conflict if loading both libs same application domain.

that why ask guys, there way me pass specific applicationdomain or loadercontext rsl's ? maybe through cross-domain file?

any ideas?

thank you

i'm not pretty sure trying do, of course can specify applicationdomain:

var appdomaina:applicationdomain = new applicationdomain();   var contexta:loadercontext = new loadercontext(false, appdomaina);  var loadera:loader = new loader();  loadera.load(new urlrequest("application2.swf"), contexta); 

reference: http://help.adobe.com/en_us/flashplatform/reference/actionscript/3/flash/system/applicationdomain.html


Comments