home *** CD-ROM | disk | FTP | other *** search
/ Games Central GT Digital… Q3 Premier Trimestre '98 / GT_DPK.ISO / pc / data / menu.dxr / 00167.ls < prev    next >
Encoding:
Text File  |  1995-08-25  |  759 b   |  29 lines

  1. on mouseEnter me
  2.   global LANGSETUP
  3.   if LANGSETUP = "e" then
  4.     set the member of sprite 41 to member "DATE4" of castLib "RELEASE"
  5.     set the member of sprite 44 to member "R2A" of castLib "RELEASE"
  6.   end if
  7.   if LANGSETUP = "f" then
  8.     set the member of sprite 41 to member "DATE4" of castLib "RELEASE"
  9.     set the member of sprite 44 to member "R2B" of castLib "RELEASE"
  10.   end if
  11. end
  12.  
  13. on mouseLeave
  14.   set the member of sprite 41 to member "DATE3" of castLib "RELEASE"
  15.   set the member of sprite 44 to member "ICON" of castLib "RELEASE"
  16. end
  17.  
  18. on mouseUp me
  19.   global GAMESETUP, Greturn, LANGSETUP
  20.   set Greturn to "r"
  21.   if LANGSETUP = "e" then
  22.     set GAMESETUP to "1"
  23.   end if
  24.   if LANGSETUP = "f" then
  25.     set GAMESETUP to "2"
  26.   end if
  27.   go("GAMES")
  28. end
  29.