[AS3]as3检测flash的swf文件所属域名附源代码实例
写了一个类,用于检测swf是否存在于我们希望的网站中。
提供两个方法:
detectUrl(allow_url:String, is_unload:Boolean):Boolean
detectUrl 接受两个参数,第一个字符串参数为要检测的域名,域名不要带“http://”,如果处于此域名中,返回true,否则返回false。第二个布尔参数为是否则在返回ture时载影片。
detectUrlInTxt(txt_url:String, is_unload:Boolean):Void
detectUrlInTxt 接受两个参数,第一个字符串参数为包含要检测域名的txt文本文件,如果处于此域名中,调用onResult处理器,并传入值true,否则传入 false。如果载入txt文件失败,传入值null。第二个参数作用同detectUrl。txt文件中域名定义的格式 为:&allowUrl=www.abc.com&
- class Domain extends String{
- private var txtLV:LoadVars;
- private var isUnLoad:Boolean;
- public var onResult;
- function Domain(Void){};
- public function detectUrl(allow_url:String, is_unload:Boolean):Boolean{
- var theDomain = _root._url;
- if((theDomain.indexOf(allow_url) != -1) && (theDomain.indexOf("http://") == 0)){
- return true;
- }else{
- isUnLoad = is_unload;
- if(isUnLoad){
- _root.unloadMovie();
- }
- return false;
- }
- }
- public function detectUrlInTxt(txt_url:String, is_unload:Boolean):Void{
- var owner = this;
- owner.isUnLoad = is_unload;
- txtLV = new LoadVars();
- txtLV.load(txt_url);
- txtLV.onLoad = function(success:Boolean){
- if(success){
- owner.onResult(owner.detectUrl(this.allowUrl));
- } else {
- owner.onResult(null);
- if(owner.isUnLoad){
- _root.unloadMovie();
- }
- }
- }
- }
- }
热门文章推荐
- [HLS]做自己的m3u8点播系统使用HTTP Live Streaming(HLS技术)
- [FMS]FMS流媒体服务器配置与使用相关的介绍
- [AS3]什么是M3U8,与HTML5的区别是什么
- AS2.0 让flash自适应全屏,并且不自动缩放
- [AS3]as3.0的sound类常用技巧整理
- [AS3]as3与ByteArray详解、ByteArray介绍、ByteArray用法
- 关于RTMP,RTMPT,RTMPS,RTMPE,RTMPTE协议的介绍
- [JS]分享浏览器弹出窗口不被拦截JS示例