例如我在flash Button 元件中加入上列語法
on(release) {
getURL("www.myweb.com.tw/golden_life.htm#1");
}
實驗後,我沒辦法連到 1這個錨點
有什麼方法可以解決或用替代方法達成連到網頁中的錨點
非常感謝謝!!
2007-04-30 01:01:30 · 2 個解答 · 發問者 spoon 2 in 電腦與網際網路 ➔ 程式設計
我實驗後是可以壓,你的 golden_life.htm 是不是語法上有問題?
我實驗的流程:
1. 抓個奇摩知識+ 右邊的廣告解碼一下。以
357263_040407_240x400_T.swf
這個為實驗對象。
2. 在它的 on(release) 拿來改成:
on (release)
{
"";
clickTAG;
getURL("http://www.mountaindragon.com/html/links.htm#mouseout");
}
3. alt-enter 測試錨點跳躍沒有問題。你可以試試改成
http://www.mountaindragon.com/html/links.htm#local
http://www.mountaindragon.com/html/links.htm#anchor
http://www.mountaindragon.com/html/links.htm#alert
...
2007-04-30 04:31:22 · answer #1 · answered by mh 7 · 0⤊ 0⤋
直接改成呼叫html頁面的javascript function, 再由此function來操作錨點就好.
使用getURL呼叫頁面的function:
getURL("java script: yourFuntion();");
ps: java跟script之間沒有空隔...
然後在你的html裡寫一個名叫yourFunction的function:
例如:
2007-04-30 02:28:49 · answer #2 · answered by Fodo 5 · 0⤊ 0⤋