home *** CD-ROM | disk | FTP | other *** search
/ SKIP - The Laundry Guide / LEVER_CD.iso / lever / ccmain.dir / 00021_popuptext.ls < prev    next >
Encoding:
Text File  |  1997-02-21  |  1.4 KB  |  55 lines

  1. on mouseUp
  2.   global gOldLine, gFromFrame, gLowlightColor, languagechosen, colorcount
  3.   case gOldLine of
  4.     1, 2, 12, 13, 14, 18:
  5.       set the foreColor of line gOldLine of member "popuptext" of castLib languagechosen to 0
  6.     otherwise:
  7.       set the foreColor of line gOldLine of member "popuptext" of castLib languagechosen to gLowlightColor
  8.   end case
  9.   cursor(4)
  10.   case the mouseLine of
  11.     1:
  12.       go(colorcount, the pathName & "MAIN")
  13.     2:
  14.       go(colorcount, the pathName & "CCMAIN")
  15.     3:
  16.       go(colorcount, the pathName & "CCDD")
  17.     4:
  18.       go(colorcount, the pathName & "CCWD")
  19.     5:
  20.       go(colorcount, the pathName & "CCSF")
  21.     6:
  22.       go(colorcount, the pathName & "CCFCL")
  23.     7:
  24.       go(colorcount, the pathName & "CCSG")
  25.     8:
  26.       go(colorcount, the pathName & "CCBR")
  27.     9:
  28.       go(colorcount, the pathName & "CCWDIS")
  29.     10:
  30.       go(colorcount, the pathName & "CCIT")
  31.     11:
  32.       go(colorcount, the pathName & "CCHFS")
  33.     12:
  34.       go(colorcount, the pathName & "CCPFT")
  35.     13:
  36.       go(1, the pathName & "TVMAIN")
  37.     14:
  38.       go(1, the pathName & "ENVMAIN")
  39.     15:
  40.       go(1, the pathName & "SSMAIN")
  41.     16:
  42.       go(1, the pathName & "SSVG")
  43.     17:
  44.       go(1, the pathName & "SSWA")
  45.     18:
  46.       go(1, the pathName & "SSFF")
  47.     19:
  48.       go(1, the pathName & "GAME")
  49.     20:
  50.       cursor(0)
  51.     21:
  52.       go(1, the pathName & "STOP")
  53.   end case
  54. end
  55.