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

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