FLASH右鍵菜單的應用
來源:互聯網
上載者:User
看到別人作了一個右鍵菜單.感覺不錯.其它大家可以多多應用他.所以作個小例子出來. 大家可以應用於多媒體示範等地方.核心代碼如下:
var empiremue = new ContextMenu();//刪除原始菜單狀態!
empiremue.hideBuiltInItems();//自訂功能表項目!
empiremue.customItems.push(new ContextMenuItem("返回首介面", home));
empiremue.customItems.push(new ContextMenuItem("返回到一副", h1));
empiremue.customItems.push(new ContextMenuItem("返回到二副", h2));
empiremue.customItems.push(new ContextMenuItem("返回到三副", h3));
empiremue.customItems.push(new ContextMenuItem("返回到四副", h4));
empiremue.customItems.push(new ContextMenuItem("返回到五副", h5));
empiremue.customItems.push(new ContextMenuItem("返回到六副", h6));
empiremue.customItems.push(new ContextMenuItem("去[閃客帝國]學習", gotoempire));//菜單子程式執行目標...
function home() { _root.gotoAndStop(1);}
function h1() { _root.gotoAndStop(2);}
function h2() { _root.gotoAndStop(3);}
function h3() { _root.gotoAndStop(4);}
function h4() { _root.gotoAndStop(5);}
function h5() { _root.gotoAndStop(6);}
function h6() { _root.gotoAndStop(7);}
function gotoempire() { getURL("http://www.flashempire.com/school/", "_blank");}
_root.menu = empiremue;