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

  1. on exitFrame
  2.   global gHighlightColor, gLowlightColor, gOldLine, languagechosen, framecount, sectionnumber
  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(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.     set framecount to framecount + 1
  28.     case framecount of
  29.       175:
  30.         set the text of member "movietext" to the text of member "CCPFTSub2" of castLib languagechosen
  31.       250:
  32.         set the text of member "movietext" to the text of member "movietext" & the text of member "CCPFTSub3" of castLib languagechosen
  33.       360:
  34.         set the text of member "movietext" to the text of member "CCPFTSub4" of castLib languagechosen
  35.       750:
  36.         set the text of member "movietext" to the text of member "CCPFTSub5" of castLib languagechosen
  37.       900:
  38.         set the text of member "movietext" to the text of member "CCPFTSub6" of castLib languagechosen
  39.       2100:
  40.         set the text of member "movietext" to the text of member "CCPFTSub7" of castLib languagechosen
  41.       2200:
  42.         set the text of member "movietext" to the text of member "CCPFTSub8" of castLib languagechosen
  43.       2350:
  44.         set the text of member "movietext" to the text of member "CCPFTSub9" of castLib languagechosen
  45.       2725:
  46.         set the text of member "movietext" to the text of member "CCPFTSub10" of castLib languagechosen
  47.       2950:
  48.         set the text of member "movietext" to the text of member "CCPFTSub11" of castLib languagechosen
  49.       3300:
  50.         set the text of member "movietext" to the text of member "CCPFTSub12" of castLib languagechosen
  51.     end case
  52.   end if
  53.   go(the frame)
  54. end
  55.