我在as2中使用getUrl时遇到问题,当我使用测试影片运行swf链接工作可能,但如果我运行已发布的文件我得到一个错误的网址,例如
- 通过测试电影运行:获取 - > 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");
}
}
}
}
}
};
答案 0 :(得分:0)
我只需要在getRUL中添加http://,如下所示 使用getURL( “http://www.google.com”);而不是getURL(“www.google.com”);