Flex: Loading assets into externally loaded modules... - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T05:12:34Zhttp://stackoverflow.com/feeds/question/127598http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/127598/flex-loading-assets-into-externally-loaded-modules3Flex: Loading assets into externally loaded modules...onekidney2008-09-24T14:43:11Z2008-09-25T19:57:00Z
<p>So, I have Flex project that loads a Module using the ModuleManager - not the module loader. The problem that I'm having is that to load an external asset (like a video or image) the path to load that asset has to be relative to the Module swf...not relative to the swf that loaded the module.</p>
<p>The question is - How can I load an asset into a loaded module using a path relative to the parent swf, not the module swf?</p>
http://stackoverflow.com/questions/127598/flex-loading-assets-into-externally-loaded-modules/132670#1326700Answer by hasseg for Flex: Loading assets into externally loaded modules...hasseg2008-09-25T11:14:42Z2008-09-25T11:26:22Z<p>You can import <code>mx.core.Application</code> and then use <a href="http://livedocs.adobe.com/flex/3/langref/mx/core/Application.html#url" rel="nofollow">Application.application.url</a> to get the path of the host application in your module and use that as the basis for building the URLs.</p>
<p>For help in dealing with URLs, see <a href="http://livedocs.adobe.com/flex/3/langref/mx/utils/URLUtil.html" rel="nofollow">the URLUtil class in the standard Flex libraries</a> and <a href="http://as3corelib.googlecode.com/svn/trunk/docs/com/adobe/net/URI.html" rel="nofollow">the URI class in the as3corelib project</a>.</p>
http://stackoverflow.com/questions/127598/flex-loading-assets-into-externally-loaded-modules/135620#1356200Answer by onekidney for Flex: Loading assets into externally loaded modules...onekidney2008-09-25T19:57:00Z2008-09-25T19:57:00Z<p>Arg! So in digging through the SWFLoader Class I found this chunk of code in private function loadContent:</p>
<pre><code> // make relative paths relative to the SWF loading it, not the top-level SWF
if (!(url.indexOf(":") > -1 || url.indexOf("/") == 0 || url.indexOf("\\") == 0))
{
var rootURL:String;
if (SystemManagerGlobals.bootstrapLoaderInfoURL != null && SystemManagerGlobals.bootstrapLoaderInfoURL != "")
rootURL = SystemManagerGlobals.bootstrapLoaderInfoURL;
else if (root)
rootURL = LoaderUtil.normalizeURL(root.loaderInfo);
else if (systemManager)
rootURL = LoaderUtil.normalizeURL(DisplayObject(systemManager).loaderInfo);
if (rootURL)
{
var lastIndex:int = Math.max(rootURL.lastIndexOf("\\"), rootURL.lastIndexOf("/"));
if (lastIndex != -1)
url = rootURL.substr(0, lastIndex + 1) + url;
}
}
}
</code></pre>
<p>So apparently, Adobe has gone through the extra effort to make images load in the actual swf and not the top level swf (with no flag to choose otherwise...), so I guess I should submit a feature request to have some sort of "load relative to swf" flag, edit the SWFLoader directly, or maybe I should have everything relative to the individual swf and not the top level...any suggestions?</p>