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).
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.
UPDATE
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 contentLoaderInfo, 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.
But there still seems to be an issue : swfBridge (on the event.COMPLETE) seems to be null?
So how do we get host SWFLoader's contentLoaderInfo.sharedEvents object ?