Statistiques: Posté par darky — Dim 6 Mai 2012 19:31
- function doSomething() {
- }
- function doSomething2() {
- getURL("http://........../", _blank);
- }
- MENU = new ContextMenu();
- MENU.hideBuiltInItems();
- Functioned = new ContextMenuItem("Pseudo ou Nom du site © 2010", doSomething);
- Functioned2 = new ContextMenuItem("Pseudo", doSomething2);
- MENU.customItems.push(Functioned);
- MENU.customItems.push(Functioned2);
- _root.menu = MENU;
- var my_menu:ContextMenu = new ContextMenu();
- my_menu.hideBuiltInItems();
-
- var my_notice = new ContextMenuItem("Titre");
- var my_email = new ContextMenuItem("Mail");
- var my_copyright = new ContextMenuItem("Copyright - 2010");
-
- my_copyright.enabled = false;
- my_copyright.separatorBefore = true;
-
- function openLink(e:ContextMenuEvent):void{
- navigateToURL(new URLRequest("http://.............."));
- }
- my_notice.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, openLink);
-
- my_menu.customItems.push(my_notice, my_email, my_copyright);
-
- contextMenu = my_menu;
Statistiques: Posté par Léa — Ven 29 Avr 2011 17:17