Flash加Html超連結
若想讓使用者在Flash上點擊後連到指定網址,在Flash物件外包<a href=”a.htm”>…</a>是沒有用的。
這時只好加一個長、寬都跟Flash一樣的隱形button來達到此目地。
<button style="width: 200px; height: 100px; background: transparent; border: 0; padding: 0; " onclick="window.open('a.htm','online','scrollbars=yes,width=800,height=600')" />
<object width="200px" height="100px" classid="…>…</object>