检测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&
1class Domain extends String{
2 private var txtLV:LoadVars;
3 private var isUnLoad:Boolean;
4 public var onResult;
5 function Domain(Void){};
6 public function detectUrl(allow_url:String, is_unload:Boolean):Boolean{
7 var theDomain = _root._url;
8 if((theDomain.indexOf(allow_url) != -1) && (theDomain.indexOf("http://") == 0)){
9 return true;
10 }else{
11 isUnLoad = is_unload;
12 if(isUnLoad){
13 _root.unloadMovie();
14 }
15 return false;
16 }
17 }
18 public function detectUrlInTxt(txt_url:String, is_unload:Boolean):Void{
19 var owner = this;
20 owner.isUnLoad = is_unload;
21 txtLV = new LoadVars();
22 txtLV.load(txt_url);
23 txtLV.onLoad = function(success:Boolean){
24 if(success){
25 owner.onResult(owner.detectUrl(this.allowUrl));
26 } else {
27 owner.onResult(null);
28 if(owner.isUnLoad){
29 _root.unloadMovie();
30 }
31 }
32 }
33 }
34}
预览
- 文章ID:76
- 原文作者:zrong
- 原文链接:https://blog.zengrong.net/post/domain-class/
- 版权声明:本作品采用 署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 进行许可,非商业转载请注明出处(原文作者,原文链接),商业转载请联系作者获得授权。