[問題] 在Dreamweaver裡兩個swf的連結

看板Web_Design作者 (herling)時間14年前 (2011/06/27 19:02), 編輯推噓0(000)
留言0則, 0人參與, 最新討論串1/1
不好意思要來請問大家@@ 現在我想要做一個版面如http://img339.imageshack.us/i/roror.jpg/ 本來是計畫在DW按下swf按鈕,換頁部分只有動畫換頁 (等於是五個按鈕各自連結五個動畫) 所以我按鈕那部份的程式(as3.0)如下 go1_btn.addEventListener(MouseEvent.CLICK,go1); function go1(e:MouseEvent):void { var request:URLRequest = new URLRequest("1.html"); navigateToURL(request,"_self"); gotoAndPlay(1); } go2_btn.addEventListener(MouseEvent.CLICK,go2); function go2(e:MouseEvent):void { var request:URLRequest = new URLRequest("2.html"); navigateToURL(request,"_self"); gotoAndPlay(10); } go3_btn.addEventListener(MouseEvent.CLICK,go3); function go3(e:MouseEvent):void { var request:URLRequest = new URLRequest("3.html"); navigateToURL(request,"_self"); gotoAndPlay(18); } go35H_btn.addEventListener(MouseEvent.CLICK,go35H); function go35H(e:MouseEvent):void { var request:URLRequest = new URLRequest("4.html"); navigateToURL(request,"_self"); gotoAndPlay(26); } go5i_btn.addEventListener(MouseEvent.CLICK,go5i); function go5i(e:MouseEvent):void { var request:URLRequest = new URLRequest("5.html"); navigateToURL(request,"_self"); gotoAndPlay(35); } 可是...可怕的事情發生了 它連結過去之後 是有連結到動畫 但它變成http://imageshack.us/photo/my-images/535/roror2.jpg/ 請問我應該要如何修改才對@@?是DW的問題嗎? -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 220.136.78.59
文章代碼(AID): #1E26Cmjo (Web_Design)