R – How to the Flash app determine its own URL

actionscript-3flash

My flash app needs to know its own URL, so that it can load some (non-embedded) content using relative paths.

(I cannot hardcode the full paths because there will be multiple installs — staging, production, etc. Nor can I use simple relative paths because there's one legacy install that uses a different relative path (ugh). And I cannot just embed the content, because it is shared. I need to get the full URL and then do some if statements with it.)

(Please note that the URL of the page into which the .SWF file is embedded will not work. The app is included in a CMS, so the page URLs can be quite different from the content URLs. I need the actual URL of the .SWF file.)

Can this be done programatically, or am I stuck with passing the URL as a parameter?

Best Answer

In AS3, the URL of current swf file can be found via the LoaderInfo class instance. So in your main document class (or main stage frame script) this should give your the URL of your swf file:

this.loaderInfo.url

Every MovieClip has a loaderInfo member, that will give you its info.

LoaderInfo livedocs.

Related Topic