Flash as3
單一按鈕語法
連結到自身網頁的寫法(不新開網頁)
A_btn(按鈕實體名稱)
BTN_1(函式名稱)
"_self" (於本身網頁直接開啟)
"_blank" (新開網頁)
=================================================
A_btn.addEventListener(MouseEvent.CLICK,BTN_1);
function BTN_1(event:MouseEvent){
navigateToURL(new URLRequest("http://tw.yahoo.com"),"_self");}
=================================================
Flash as3
多個按鈕語法
同一頁面多個按鈕
連結到自身網頁的寫法(不新開網頁)
A_btn(按鈕實體名稱)
BTN_1(函式名稱)
"_self" (於本身網頁直接開啟)
"_blank" (新開網頁)
=================================================
A_btn.addEventListener(MouseEvent.CLICK,BTN_1);
B_btn.addEventListener(MouseEvent.CLICK,BTN_2);
C_btn.addEventListener(MouseEvent.CLICK,BTN_3);
D_btn.addEventListener(MouseEvent.CLICK,BTN_4);
function BTN_1(event:MouseEvent){
navigateToURL(new URLRequest("http://tw.yahoo.com"),"_self");}
function BTN_2(event:MouseEvent){
navigateToURL(new URLRequest("http://www.google.com"),"_self");}
function BTN_3(event:MouseEvent){
navigateToURL(new URLRequest("http://www.youtube.com"),"_self");}
function BTN_4(event:MouseEvent){
navigateToURL(new URLRequest("http://www.yam.com.tw"),"_self");}
==========================================
範例網頁
http://mepo.cc/SVTC/
Edited 1 time(s). Last edit at 11/11/2010 10:58AM by JinJin.
(
編輯記錄)