home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / climatechaos.swf / scripts / frame_799 / DoAction.as
Encoding:
Text File  |  2008-09-12  |  1.2 KB  |  54 lines

  1. _quality = "medium";
  2. e = new Environment(70,500);
  3. c = new Control(e,blue);
  4. Story.setEnv(e);
  5. _root.attachMovie("digi_cam","digi_cam",1000004);
  6. _root.digi_cam.setEnvironment(e);
  7. _root.digi_cam._y = 500;
  8. _root.digi_cam._xscale = _root.digi_cam._yscale = 110;
  9. if(_root.load_save)
  10. {
  11.    Story.loadSave();
  12. }
  13. else
  14. {
  15.    Story.startGame();
  16. }
  17. _root.attachMovie("fade_in","fade_in",1000005);
  18. hud.swapDepths(1000002);
  19. splash.swapDepths(1000003);
  20. s = null;
  21. this.onEnterFrame = function()
  22. {
  23.    c.use();
  24. };
  25. men = new ContextMenu();
  26. pau = new ContextMenuItem("Pause",function()
  27. {
  28.    Story.pauseGame();
  29. });
  30. hi = new ContextMenuItem("Quality: High",function()
  31. {
  32.    _quality = "MEDIUM";
  33. },true);
  34. lo = new ContextMenuItem("Quality: Low",function()
  35. {
  36.    _quality = "LOW";
  37. });
  38. sfb = new ContextMenuItem("SuperFlashBros.net",function()
  39. {
  40.    getURL("http://www.superflashbros.net","_blank","POST");
  41. },true);
  42. agm = new ContextMenuItem("Play More Games!",function()
  43. {
  44.    getURL("http://www.armorgames.com","_blank","POST");
  45. });
  46. men.hideBuiltInItems();
  47. men.customItems.push(pau);
  48. men.customItems.push(hi);
  49. men.customItems.push(lo);
  50. men.customItems.push(sfb);
  51. men.customItems.push(agm);
  52. _root.menu = men;
  53. stop();
  54.