作者book153772 (勘吉)
看板Flash
標題[問題] flash 超連結的問題
時間Tue May 14 23:13:34 2013
小弟最近想做一個loading,當他數據跑完後會跳出圖片讓我超連結
但是小弟已經做好了按了ctrl+enter超連結是沒問題的,但是當我到桌面
點下swf黨卻超連結失敗,小弟不知是哪裡出錯,想請各位幫小弟看一下
這是小弟參考的網址:
http://ppt.cc/C5AL
附上小弟更改的程式碼:
stop();
var url:String;
var request:URLRequest;
bt.addEventListener(MouseEvent.CLICK, doClick);
function doClick(e:MouseEvent):void {
url= "
http://tw.yahoo.com/";
request= new URLRequest(url);
navigateToURL(request, "_blank");
}
function AAA(EE:MouseEvent) {
//trace(this.currentFrame,this.totalFrames)
if (this.currentFrame==this.totalFrames - 1) {
this.gotoAndStop(1);
} else {
this.nextFrame();
}
}
function BBB(EE:MouseEvent) {
if (this.currentFrame==1) {
this.gotoAndStop(this.totalFrames-1);
} else {
this.prevFrame();
}
}
RIGHT_btn.addEventListener(MouseEvent.CLICK,AAA);
LEFT_btn.addEventListener(MouseEvent.CLICK,BBB);
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 1.172.128.183
1F:推 zpl:直接執行swf上的超連結會有安全性問題 在實際網頁上就不會了 05/15 14:07