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

  1. on exitFrame
  2.   global gHighlightColor, gLowlightColor, gOldLine, languagechosen, loopff
  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.     checkButtonrollovers()
  12.     if rollOver(44) then
  13.       set the blend of sprite 41 to 75
  14.     else
  15.       set the blend of sprite 41 to 25
  16.     end if
  17.     if rollOver(45) then
  18.       set the blend of sprite 42 to 75
  19.     else
  20.       set the blend of sprite 42 to 25
  21.     end if
  22.     if rollOver(46) then
  23.       set the blend of sprite 43 to 75
  24.     else
  25.       set the blend of sprite 43 to 25
  26.     end if
  27.   end if
  28.   updateStage()
  29.   go(the frame)
  30. end
  31.  
  32. on settheLanguageMembersEuro optionValue
  33.   global languagechosen
  34.   set memberValue to "ssffsecondtextbox1-" & optionValue
  35.   set the text of member memberValue to the text of member memberValue of castLib languagechosen
  36.   set memberValue to "ssffsecondtextbox2-" & optionValue
  37.   set the text of member memberValue to the text of member memberValue of castLib languagechosen
  38.   set memberValue to "ssffsecondtextbox3-" & optionValue
  39.   set the text of member memberValue to the text of member memberValue of castLib languagechosen
  40.   set memberValue to "ssffsecondtextbox4-" & optionValue
  41.   set the text of member memberValue to the text of member memberValue of castLib languagechosen
  42. end
  43.