一般主要是利用LoaderInfo的url属性:
即: this.stage.loaderInfo.url
- var doMain:String = this.stage.loaderInfo.url;//得到其路径
- var doMainArray:Array = doMain.split("/");
- if (doMainArray[0] == "file:") { //判别是本地模式还是网络模式
- trace("Local debug mode.");
- }else{
- trace("Web host mode");
- }
或者:
- import flash.external.ExternalInterface;
- //Method 1
- var urlPath = ExternalInterface.call("window.location.href.toString"); //法一
- //Method 2
- var urlPath = loaderInfo.url; //法二
得到嵌套了swf的html的域的方法:
- import flash.external.ExternalInterface;
- var full:String = ExternalInterface.call("window.location.href.toString");//得到含有swf的html的路径