home *** CD-ROM | disk | FTP | other *** search
/ Helix Design System / HELIX_DESIGN_SYSTEM_DEMO.iso / portug / modeling.dxr / 00027.ls < prev    next >
Encoding:
Text File  |  1996-12-19  |  436 b   |  18 lines

  1. on mouseDown
  2.   set the puppet of sprite 37 to 1
  3.   set the locV of sprite 37 to the locV of sprite 37 + 3
  4.   set the locH of sprite 37 to the locH of sprite 37 + 2
  5.   updateStage()
  6. end
  7.  
  8. on mouseUp
  9.   set the locV of sprite 37 to the locV of sprite 37 - 3
  10.   set the locH of sprite 37 to the locH of sprite 37 - 2
  11.   updateStage()
  12.   repeat with i = 30 to 38
  13.     set the puppet of sprite i to 0
  14.   end repeat
  15.   updateStage()
  16.   go(marker(1))
  17. end
  18.