home *** CD-ROM | disk | FTP | other *** search
/ SKIP - The Laundry Guide / LEVER_CD.iso / lever / ccmain.dir / 00026_PopupFrameScript.ls < prev    next >
Encoding:
Text File  |  1997-02-21  |  711 b   |  29 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.     if rollOver(44) then
  12.       set the blend of sprite 41 to 75
  13.     else
  14.       set the blend of sprite 41 to 25
  15.     end if
  16.     if rollOver(45) then
  17.       set the blend of sprite 42 to 75
  18.     else
  19.       set the blend of sprite 42 to 25
  20.     end if
  21.     if rollOver(46) then
  22.       set the blend of sprite 43 to 75
  23.     else
  24.       set the blend of sprite 43 to 25
  25.     end if
  26.   end if
  27.   go(the frame)
  28. end
  29.