home *** CD-ROM | disk | FTP | other *** search
/ Seeker / Seeker.iso / files_w / shared.dir / 00222.ls < prev    next >
Encoding:
Text File  |  1994-12-10  |  529 b   |  19 lines

  1. on mouseDown
  2.   set cnum to the castNum of sprite clickOn()
  3.   if cnum <> 0 then
  4.     cursor([247, 248])
  5.     set the castNum of sprite 48 to cnum
  6.     set the castNum of sprite clickOn() to 0
  7.     repeat while the stillDown
  8.       set the locH of sprite 48 to mouseH()
  9.       set the locV of sprite 48 to mouseV()
  10.       updateStage()
  11.     end repeat
  12.     set the castNum of sprite clickOn() to cnum
  13.     set the castNum of sprite 48 to 210
  14.     set the locH of sprite 48 to 0
  15.     set the locV of sprite 48 to 0
  16.     cursor(200)
  17.   end if
  18. end
  19.