home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Nave / rocket_rush.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2007-03-20  |  1.2 KB  |  48 lines

  1. men = new ContextMenu();
  2. auto = new ContextMenuItem("Quality: Auto",function()
  3. {
  4.    _global.quality_set = "auto";
  5. },true);
  6. hi = new ContextMenuItem("Quality: High",function()
  7. {
  8.    _global.quality_set = "high";
  9.    _quality = "HIGH";
  10. });
  11. med = new ContextMenuItem("Quality: Medium",function()
  12. {
  13.    _global.quality_set = "medium";
  14.    _quality = "MEDIUM";
  15. });
  16. lo = new ContextMenuItem("Quality: Low",function()
  17. {
  18.    _global.quality_set = "low";
  19.    _quality = "LOW";
  20. });
  21. sfb = new ContextMenuItem("SuperFlashBros.net",function()
  22. {
  23.    getURL("http://www.superflashbros.net","_blank","POST");
  24. },true);
  25. agms = new ContextMenuItem("ArmorGames.com",function()
  26. {
  27.    getURL("http://www.armorgames.com","_blank","POST");
  28. });
  29. agm = new ContextMenuItem("Play More Games!",function()
  30. {
  31.    getURL("http://www.armorgames.com","_blank","POST");
  32. });
  33. men.hideBuiltInItems();
  34. men.customItems.push(auto);
  35. men.customItems.push(hi);
  36. men.customItems.push(med);
  37. men.customItems.push(lo);
  38. men.customItems.push(sfb);
  39. men.customItems.push(agms);
  40. men.customItems.push(agm);
  41. _root.menu = men;
  42. _root.tabEnabled = false;
  43. _global.quality_set = "high";
  44. _global.music_vol = 5;
  45. _global.sfx_vol = 5;
  46. _global.control_type = 1;
  47. _global.updown = "reverse";
  48.