home *** CD-ROM | disk | FTP | other *** search
/ SKIP - The Laundry Guide / LEVER_CD.iso / lever / sswa.dir / 00096_hdowntext.ls < prev    next >
Encoding:
Text File  |  1997-03-07  |  287 b   |  16 lines

  1. on mouseDown
  2.   set the visible of sprite 37 to 1
  3.   repeat while the stillDown = 1
  4.     MoveTextDown()
  5.   end repeat
  6. end
  7.  
  8. on MoveTextDown
  9.   repeat with counter = 1 to 50
  10.     if counter = 50 then
  11.       scrollByLine(member "sswalantextbox", 1)
  12.       updateStage()
  13.     end if
  14.   end repeat
  15. end
  16.