home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / Dual.swf / scripts / frame_2 / DoAction_2.as next >
Encoding:
Text File  |  2008-09-03  |  571 b   |  19 lines

  1. function deadClick()
  2. {
  3. }
  4. function gotoMySite()
  5. {
  6.    getUrl("http://www.rjgam.es", "_blank");
  7. }
  8. function gotoHisSite()
  9. {
  10.    getUrl("http://arcadevoid.com/?dual", "_blank");
  11. }
  12. var myMenu = new ContextMenu();
  13. myMenu.hideBuiltInItems();
  14. var mySiteLink = new ContextMenuItem("Developed by RJGames",gotoMySite);
  15. var hisSiteLink = new ContextMenuItem("Sponsored by Arcadevoid",gotoHisSite);
  16. var Skyline = new ContextMenuItem("Music: Garden of Memories, by Maestro Rage",deadClick);
  17. myMenu.customItems.push(mySiteLink,hisSiteLink,Skyline);
  18. _root.menu = myMenu;
  19.