home *** CD-ROM | disk | FTP | other *** search
/ GU Photo: Background 3 / GU.iso / pc / browser_4m_ / browser_4m_.dxr / 00122_search.ls < prev    next >
Encoding:
Text File  |  1994-09-30  |  490 b   |  21 lines

  1. on mouseDown
  2.   set sp to clickOn()
  3.   set cst to the castNum of sprite sp
  4.   set v to the mouseV - the locV of sprite sp - (the height of sprite sp / 2)
  5.   if field cst = EMPTY then
  6.     put "1" into field cst
  7.   end if
  8.   if v < 0 then
  9.     put value(field cst) + 1 into field cst
  10.   else
  11.     put value(field cst) - 1 into field cst
  12.   end if
  13.   if 101 < value(field cst) then
  14.     put "101" into field cst
  15.   else
  16.     if value(field cst) < 1 then
  17.       put "1" into field cst
  18.     end if
  19.   end if
  20. end
  21.