home *** CD-ROM | disk | FTP | other *** search
/ SKIP - The Laundry Guide / LEVER_CD.iso / lever / sswa.dir / 00088.ls < prev    next >
Encoding:
Text File  |  1997-03-07  |  1.1 KB  |  47 lines

  1. on exitFrame
  2.   global gHighlightColor, gLowlightColor, gOldLine, languagechosen
  3.   if the visible of sprite 48 = 1 then
  4.     if rollOver(48) then
  5.       set tempmouseline to the mouseLine
  6.       if tempmouseline <> 20 then
  7.         set the locV of sprite 47 to 23 + (tempmouseline * 17)
  8.       end if
  9.     end if
  10.   else
  11.     cursor(0)
  12.     if rollOver(1) then
  13.       set the member of sprite 47 to member "sswabanner" of castLib languagechosen
  14.     end if
  15.     if rollOver(3) then
  16.       checkCountryRoll()
  17.     end if
  18.     checkNodeRoll()
  19.     checkupdown()
  20.     if rollOver(6) then
  21.       set the visible of sprite 7 to 1
  22.     else
  23.       set the visible of sprite 7 to 0
  24.     end if
  25.     if rollOver(8) then
  26.       set the visible of sprite 9 to 1
  27.     else
  28.       set the visible of sprite 9 to 0
  29.     end if
  30.     if rollOver(44) then
  31.       set the blend of sprite 41 to 75
  32.     else
  33.       set the blend of sprite 41 to 25
  34.     end if
  35.     if rollOver(45) then
  36.       set the blend of sprite 42 to 75
  37.     else
  38.       set the blend of sprite 42 to 25
  39.     end if
  40.     if rollOver(46) then
  41.       set the blend of sprite 43 to 75
  42.     else
  43.       set the blend of sprite 43 to 25
  44.     end if
  45.   end if
  46. end
  47.