home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / destroytheworld.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2006-06-13  |  577 b   |  18 lines

  1. stop();
  2. flyborg = function()
  3. {
  4.    getURL("http://www.flyborg.net",_blank);
  5. };
  6. download = function()
  7. {
  8.    getURL("http://www.flyborg.net/download_destroy-the-world.html",_blank);
  9. };
  10. newMenu = new ContextMenu();
  11. newMenu.hideBuiltInItems();
  12. newMenu.builtInItems.quality = true;
  13. visitFlyborg = new ContextMenuItem("Visit my site, Flyborg.net!",flyborg);
  14. downloadGame = new ContextMenuItem("Put this game on your site or download the desktop version!",download);
  15. newMenu.customItems.push(visitFlyborg);
  16. newMenu.customItems.push(downloadGame);
  17. _root.menu = newMenu;
  18.