home *** CD-ROM | disk | FTP | other *** search
- men = new ContextMenu();
- pau = new ContextMenuItem("Pause",function()
- {
- Story.pauseGame();
- },false,false);
- 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;
-