Is it possible to access static fields declared in a host application by movies loaded dynamically using SWFLoader - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T07:52:20Zhttp://stackoverflow.com/feeds/question/814097http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/814097/is-it-possible-to-access-static-fields-declared-in-a-host-application-by-movies-l0Is it possible to access static fields declared in a host application by movies loaded dynamically using SWFLoadernso12009-05-02T03:54:01Z2009-05-05T15:57:45Z
<p>Is it possible to access declared static fields in a host by a dynamically loaded movie (provided the loaded movie is from a fully trusted domain).</p>
<p>My main concern is to make sure we don't expose data to loaded swf's, but want to still listen to events (via hosted apps callback functions) fired by the loaded swf.</p>
<p><hr /></p>
<p>UPDATE</p>
<p>SWFLoader (for flex) and Loader (flash) do vary. SWFLoader wraps Loader, but until Flex API 3.2 (or 3.3?) it seems you can't get direct access to the loaders <strong>contentLoaderInfo</strong>, which is used as the link to the loaded swf's loaderInfo without having to access first the content property of the host swfloader. In Flex 3.3, they introduce a proprety on SWFLoader.swfBridge that (looking at the source code) exposes the contentLoaderInfo.sharedEvents object of the nested Loader. </p>
<p>But there still seems to be an issue : swfBridge (on the event.COMPLETE) seems to be null? </p>
<p>So how do we get host SWFLoader's contentLoaderInfo.sharedEvents object ?</p>
http://stackoverflow.com/questions/814097/is-it-possible-to-access-static-fields-declared-in-a-host-application-by-movies-l/817177#8171771Answer by George Profenza for Is it possible to access static fields declared in a host application by movies loaded dynamically using SWFLoaderGeorge Profenza2009-05-03T14:17:51Z2009-05-03T14:17:51Z<p>If you're application A.swf loads a file B.swf from a different domain, and on B.swf's domain there is a crossdomain policy file allowing A.swf to access B.swf's content, yes
you can access pretty much all there is inside the B.swf including static fields. You read those using the <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/text/TextSnapshot.html" rel="nofollow">TextSnapshot</a> class.</p>
<p>If you want A.swf to load B.swf from a different domain, but don't want A.swf to have access to B.swf's content, simply don't allow it to, as for events, I remember there was something called <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/LoaderInfo.html#sharedEvents" rel="nofollow">SharedEvents</a>. I was lucky enough not to need this yet, but I remember reading about this in <a href="http://oreilly.com/catalog/9780596526948/" rel="nofollow">Essential Actionscript 3.0</a>. There was a whole boring chapter about Security. Sorry I can't provide a more concrete example as I'm not responding from my personal experience.</p>
<p>Goodluck!</p>