home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / chichi.swf / scripts / frame_1 / DoAction.as < prev   
Text File  |  2008-09-25  |  400b  |  15 lines

  1. function doSomething1()
  2. {
  3. }
  4. function doSomething2()
  5. {
  6.    getURL("http://www.flippixel.com",_blank);
  7. }
  8. MENU = new ContextMenu();
  9. MENU.hideBuiltInItems();
  10. MyMenu1 = new ContextMenuItem("Concept | Design | Code by FL!P P!XEL ",doSomething1);
  11. MyMenu2 = new ContextMenuItem("Visit FL!P P!XEL",doSomething2);
  12. MENU.customItems.push(MyMenu1);
  13. MENU.customItems.push(MyMenu2);
  14. _root.menu = MENU;
  15.