在 as2 中使用 getUrl 时遇到问题,当我使用测试电影运行 swf 时,链接可能会起作用,但如果我运行已发布的文件,则会得到错误的 url,例如
-通过测试电影运行:getting -> www.google.com
-运行发布的 swf 文件:getting ->file:///C:/Users/moata/Desktop/actionScript/www.google.com
dots.ignoreWhite = true;
dots.load('links.xml');
dots.onLoad = function(success:Boolean){
if(success){
xmlNode = this.firstChild;
var all:MovieClip = attachMovie("test","all",depth);
setTimeout(startMe,6000);
}else{
trace("Could not load XML");
}
function startMe (){
for(i=1;i<=6;i++){
all['btn'+i].onRelease = function() {
for(i=0;i<6;i++){
var name = this;
if(String(xmlNode.childNodes[i].attributes.TITLE) == String(name)){
getURL(xmlNode.childNodes[i].childNodes[0].nodeValue, "_blank");
}
}
}
}
}
};