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

  1. on mouseDown
  2.   set the puppet of sprite 30 to 1
  3.   set the locV of sprite 30 to the locV of sprite 30 + 3
  4.   set the locH of sprite 30 to the locH of sprite 30 + 2
  5.   updateStage()
  6. end
  7.  
  8. on mouseUp
  9.   global Rootlang
  10.   set the locV of sprite 30 to the locV of sprite 30 - 3
  11.   set the locH of sprite 30 to the locH of sprite 30 - 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 & "Company.dir")
  18. end
  19.