home *** CD-ROM | disk | FTP | other *** search
/ Helix Design System / HELIX_DESIGN_SYSTEM_DEMO.iso / language.dxr / 00010.ls < prev    next >
Encoding:
Text File  |  1996-12-06  |  543 b   |  20 lines

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