vote up 0 vote down star

I would like to get the absolute path of my swf file from within Actionscript.

E.g. if the script called "http://www.mysite.com/banner/flash.swf" I'd expect "/banner"

In PHP I would do:

$fpath = str_replace('\\', '/', dirname(__FILE__));
$path = str_replace($_SERVER['DOCUMENT_ROOT'], '', $fpath);

How can I do this in Actionscript?

flag

0% accept rate
I'm sure you mean the "relative" path? – Luke Aug 17 at 23:26

1 Answer

vote up 2 vote down

I use this function in the top most class (the one that extends Sprite for AS3 projects or mx:Application for Flex projects).

	private function GetURLParts():Object
	{
		var urlPattern:RegExp = /([\w]+):\/\/([\w\._-]+)+(\S+)*(\?\S+)?/;
		var result:Array = urlPattern.exec(loaderInfo.loaderURL);

		var parts:Object = 
		{
			'protocol': result[1],
			'domain': result[2],
			'path': result[3]
		};

		return parts;
	}

You could probably modify this to fit your needs.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.