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

  1. on mouseDown
  2.   set the puppet of sprite 14 to 1
  3.   set the locV of sprite 14 to the locV of sprite 14 + 3
  4.   set the locH of sprite 14 to the locH of sprite 14 + 2
  5.   updateStage()
  6. end
  7.  
  8. on mouseUp
  9.   global Root, Rootlang
  10.   set the locV of sprite 14 to the locV of sprite 14 - 3
  11.   set the locH of sprite 14 to the locH of sprite 14 - 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 & "Spanish/"
  18.   go(3, the pathName & "Spanish/Intro.dir")
  19. end
  20.