宜昌本地软件开发与弱电工程服务商
项目咨询 · 快速响应

[AS3]as3中获取当前页面地址的类附源代码示例

2016-10-13 00:16:48 点击量:15 标签: 收藏本文

[AS3]as3中获取当前页面地址的类附源代码示例

  1. //cuplayer.com提示 AS2.0的代码 
  2. import flash.external.ExternalInterface;    
  3.     class GetHttpUrlIncludeThisSwf {    
  4.         public static function getHttpUrl() {    
  5.             return ExternalInterface.call("eval","window.location.href");    
  6.          }    
  7.     } 
  8. isSwf class is static container only");        
  9.              }    
  10.             public static function getHttpUrl() {    
  11.                 return ExternalInterface.call("eval", "window.location.href");    
  12.              }    
  13.          }    
  14.     }  

[AS3]as3中获取当前页面地址的类附源代码示例

  1. //cuplayer.net提示 as3的代码 
  2.     package {    
  3.         import flash.external.ExternalInterface;    
  4.         public class GetHttpUrlIncludeThisSwf {    
  5.             public function GetHttpUrlIncludeThisSwf() {        
  6.                 throw new Error("GetHttpUrlIncludeThisSwf class is static container only");        
  7.              }    
  8.             public static function getHttpUrl() {    
  9.                 return ExternalInterface.call("eval", "window.location.href");    
  10.              }    
  11.          }    
  12.     }