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

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