home *** CD-ROM | disk | FTP | other *** search
- function doSomething1()
- {
- }
- function doSomething2()
- {
- getURL("http://www.flippixel.com",_blank);
- }
- MENU = new ContextMenu();
- MENU.hideBuiltInItems();
- MyMenu1 = new ContextMenuItem("Concept | Design | Code by FL!P P!XEL ",doSomething1);
- MyMenu2 = new ContextMenuItem("Visit FL!P P!XEL",doSomething2);
- MENU.customItems.push(MyMenu1);
- MENU.customItems.push(MyMenu2);
- _root.menu = MENU;
-