home *** CD-ROM | disk | FTP | other *** search
/ SKIP - The Laundry Guide / LEVER_CD.iso / lever / ccit.dir / 00051.ls < prev    next >
Encoding:
Text File  |  1997-02-21  |  586 b   |  20 lines

  1. on mouseDown
  2.   global currentsectionnumber
  3.   set the visible of sprite 12 to 1
  4.   set the visible of sprite 11 to 0
  5.   updateStage()
  6.   if currentsectionnumber = 1 then
  7.     set the foreColor of sprite 34 to 141
  8.   end if
  9.   set the foreColor of sprite (26 + currentsectionnumber) to 141
  10.   set the foreColor of sprite (27 + currentsectionnumber) to 150
  11.   repeat while the stillDown = 1
  12.   end repeat
  13.   set currentsectionnumber to currentsectionnumber + 1
  14.   if currentsectionnumber = 8 then
  15.     set currentsectionnumber to 1
  16.   end if
  17.   set the visible of sprite 12 to 0
  18.   go(the frame + 1)
  19. end
  20.