home *** CD-ROM | disk | FTP | other *** search
/ What PC? 1996 August / WPCAUG96.ISO / makers / search.dir / 00062.ls < prev    next >
Encoding:
Text File  |  1996-06-12  |  668 b   |  21 lines

  1. on mouseDown
  2.   global LastSubLine, ThisSubChapter
  3.   set theSprite to the clickOn
  4.   set the castNum of sprite theSprite to the castNum of sprite theSprite + 1
  5.   updateStage()
  6.   repeat while the mouseDown
  7.     if theSprite = 18 then
  8.       if the number of lines in ThisSubChapter > LastSubLine then
  9.         set LastSubLine to LastSubLine + 1
  10.       end if
  11.     else
  12.       if LastSubLine > 20 then
  13.         set LastSubLine to LastSubLine - 1
  14.       end if
  15.     end if
  16.     put line LastSubLine - 19 to LastSubLine of ThisSubChapter into field the castNum of sprite 11
  17.   end repeat
  18.   set the castNum of sprite theSprite to the castNum of sprite theSprite - 1
  19.   updateStage()
  20. end
  21.