home *** CD-ROM | disk | FTP | other *** search
/ GKGM 014 / GKGM014.iso / trash / gorillazgroove.swf / scripts / frame_1 / DoAction.as
Text File  |  2007-01-09  |  408b  |  14 lines

  1. function gotoSite()
  2. {
  3.    getUrl("http://www.bellbrothers.net", "bell");
  4. }
  5. stop();
  6. char = 1;
  7. MENU = new ContextMenu();
  8. MENU.hideBuiltInItems();
  9. Gorillaz = new ContextMenuItem("Gorillaz Groove Session",gotoSite);
  10. MENU.customItems.push(Gorillaz);
  11. BellBrothers = new ContextMenuItem("Created by Bell Brothers (Dan Bell, John Bell)",gotoSite);
  12. MENU.customItems.push(BellBrothers);
  13. _root.menu = MENU;
  14.