home *** CD-ROM | disk | FTP | other *** search
/ SKIP - The Laundry Guide / LEVER_CD.iso / lever / ssaver.dir / 00035_PopupContents.ls < prev    next >
Encoding:
Text File  |  1997-02-21  |  1.1 KB  |  36 lines

  1. on mouseDown
  2.   global gFromFrame, gHighlightColor, gLowlightColor, gOldLine, currentSection, languagechosen
  3.   if the visible of sprite 40 = 0 then
  4.     cursor(4)
  5.     if the visible of sprite 40 = 0 then
  6.       ContentsStart()
  7.       set the visible of sprite 40 to 1
  8.       set the visible of sprite 48 to 1
  9.       updateStage()
  10.       set gFromFrame to the frame
  11.       set the member of sprite 47 to member "popuphighlight"
  12.       set the blend of sprite 47 to 50
  13.       case the movieName of
  14.         "CCWDIS.DIR":
  15.           set the locH of sprite 47 to 101
  16.         "SSWA.DIR":
  17.           set the locH of sprite 47 to 108
  18.         "CCBR.DIR":
  19.           set the locH of sprite 47 to 129
  20.         "CCMAIN.DIR":
  21.           set the locH of sprite 47 to 256
  22.         "SSVG.DIR":
  23.           set the locH of sprite 47 to 108
  24.         otherwise:
  25.           set the locH of sprite 47 to 175
  26.       end case
  27.     end if
  28.     set the locV of sprite 47 to 23 + (17 * currentSection)
  29.     set the blend of sprite 44 to 75
  30.     set the locV of sprite 47 to 23 + (currentSection * 17)
  31.     cursor(0)
  32.   else
  33.     popupcode()
  34.   end if
  35. end
  36.