home *** CD-ROM | disk | FTP | other *** search
/ Cocktail Hour / image.iso / COCKTAIL.DIR / drinks_33_arrowUp.ls < prev    next >
Encoding:
Text File  |  1997-03-05  |  385 b   |  14 lines

  1. on mouseDown
  2.   global StartingLine
  3.   set the locV of sprite 5 to -100
  4.   set the visible of sprite 18 to 1
  5.   updateStage()
  6.   repeat while the mouseDown
  7.     if StartingLine > 1 then
  8.       set StartingLine to StartingLine - 1
  9.       set the text of field "currScroll" to line StartingLine to StartingLine + 17 of field "ABC"
  10.     end if
  11.   end repeat
  12.   set the visible of sprite 18 to 0
  13. end
  14.