home *** CD-ROM | disk | FTP | other *** search
/ What PC? 1997 February / WPCFEB97.ISO / multi / times / data / tools.dir / 00020.ls < prev    next >
Encoding:
Text File  |  1996-08-12  |  863 b   |  23 lines

  1. on mouseUp
  2.   global whLett
  3.   set mv to the mouseV
  4.   set spv to the locV of sprite the clickOn
  5.   set unitHeight to 22
  6.   set offsetV to 0
  7.   set whLett to (mv - spv - (offsetV - unitHeight)) / unitHeight
  8.   set the locH of sprite 8 to the locH of sprite the clickOn
  9.   set the locV of sprite 8 to the locV of sprite the clickOn + (unitHeight * (whLett - 1))
  10.   set the width of sprite 8 to the width of sprite the clickOn
  11.   set the height of sprite 8 to unitHeight - 2
  12.   set whLett to whLett + 13
  13.   set scrollNum to value(item 2 of line whLett of field "forceScroll")
  14.   set the foreColor of field "list1" to 255
  15.   set the foreColor of line scrollNum of field "list1" to 3
  16.   if scrollNum >= 229 then
  17.     put EMPTY before line scrollNum + 1 of field "list1"
  18.   else
  19.     put EMPTY before line scrollNum of field "list1"
  20.   end if
  21.   set the text of field "result" to " "
  22. end
  23.