home *** CD-ROM | disk | FTP | other *** search
- _quality = "medium";
- e = new Environment(70,500);
- c = new Control(e,blue);
- Story.setEnv(e);
- _root.attachMovie("digi_cam","digi_cam",1000004);
- _root.digi_cam.setEnvironment(e);
- _root.digi_cam._y = 500;
- _root.digi_cam._xscale = _root.digi_cam._yscale = 110;
- if(_root.load_save)
- {
- Story.loadSave();
- }
- else
- {
- Story.startGame();
- }
- _root.attachMovie("fade_in","fade_in",1000005);
- hud.swapDepths(1000002);
- splash.swapDepths(1000003);
- s = null;
- this.onEnterFrame = function()
- {
- c.use();
- };
- men = new ContextMenu();
- pau = new ContextMenuItem("Pause",function()
- {
- Story.pauseGame();
- });
- hi = new ContextMenuItem("Quality: High",function()
- {
- _quality = "MEDIUM";
- },true);
- lo = new ContextMenuItem("Quality: Low",function()
- {
- _quality = "LOW";
- });
- sfb = new ContextMenuItem("SuperFlashBros.net",function()
- {
- getURL("http://www.superflashbros.net","_blank","POST");
- },true);
- agm = new ContextMenuItem("Play More Games!",function()
- {
- getURL("http://www.armorgames.com","_blank","POST");
- });
- men.hideBuiltInItems();
- men.customItems.push(pau);
- men.customItems.push(hi);
- men.customItems.push(lo);
- men.customItems.push(sfb);
- men.customItems.push(agm);
- _root.menu = men;
- stop();
-