home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / climatechaos.swf / scripts / frame_859 / DoAction.as
Encoding:
Text File  |  2008-09-12  |  725 b   |  29 lines

  1. men = new ContextMenu();
  2. pau = new ContextMenuItem("Pause",function()
  3. {
  4.    Story.pauseGame();
  5. },false,false);
  6. hi = new ContextMenuItem("Quality: High",function()
  7. {
  8.    _quality = "MEDIUM";
  9. },true);
  10. lo = new ContextMenuItem("Quality: Low",function()
  11. {
  12.    _quality = "LOW";
  13. });
  14. sfb = new ContextMenuItem("SuperFlashBros.net",function()
  15. {
  16.    getURL("http://www.superflashbros.net","_blank","POST");
  17. },true);
  18. agm = new ContextMenuItem("Play More Games!",function()
  19. {
  20.    getURL("http://www.armorgames.com","_blank","POST");
  21. });
  22. men.hideBuiltInItems();
  23. men.customItems.push(pau);
  24. men.customItems.push(hi);
  25. men.customItems.push(lo);
  26. men.customItems.push(sfb);
  27. men.customItems.push(agm);
  28. _root.menu = men;
  29.