home *** CD-ROM | disk | FTP | other *** search
- men = new ContextMenu();
- auto = new ContextMenuItem("Quality: Auto",function()
- {
- _global.quality_set = "auto";
- },true);
- hi = new ContextMenuItem("Quality: High",function()
- {
- _global.quality_set = "high";
- _quality = "HIGH";
- });
- med = new ContextMenuItem("Quality: Medium",function()
- {
- _global.quality_set = "medium";
- _quality = "MEDIUM";
- });
- lo = new ContextMenuItem("Quality: Low",function()
- {
- _global.quality_set = "low";
- _quality = "LOW";
- });
- sfb = new ContextMenuItem("SuperFlashBros.net",function()
- {
- getURL("http://www.superflashbros.net","_blank","POST");
- },true);
- agms = new ContextMenuItem("ArmorGames.com",function()
- {
- getURL("http://www.armorgames.com","_blank","POST");
- });
- agm = new ContextMenuItem("Play More Games!",function()
- {
- getURL("http://www.armorgames.com","_blank","POST");
- });
- men.hideBuiltInItems();
- men.customItems.push(auto);
- men.customItems.push(hi);
- men.customItems.push(med);
- men.customItems.push(lo);
- men.customItems.push(sfb);
- men.customItems.push(agms);
- men.customItems.push(agm);
- _root.menu = men;
- _root.tabEnabled = false;
- _global.quality_set = "high";
- _global.music_vol = 5;
- _global.sfx_vol = 5;
- _global.control_type = 1;
- _global.updown = "reverse";
-