home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Today (BR) Volume 2 #6 / CDRTV2N6.iso / makers / search.dir / 00062_Script_62 < prev    next >
Text File  |  1996-03-11  |  696b  |  21 lines

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