home *** CD-ROM | disk | FTP | other *** search
/ PC Home 44 / PC_Home_Issue_44.iso / director / software.dxr / 00112.ls < prev    next >
Encoding:
Text File  |  1996-03-18  |  322 b   |  14 lines

  1. on mouseDown
  2.   set the locH of sprite 31 to the locH of sprite 31 + 2
  3.   set the locV of sprite 31 to the locV of sprite 31 - 2
  4.   updateStage()
  5. end
  6.  
  7. on mouseUp
  8.   set the locH of sprite 31 to the locH of sprite 31 - 2
  9.   set the locV of sprite 31 to the locV of sprite 31 + 2
  10.   updateStage()
  11.   open("run.exe 5")
  12.   quit()
  13. end
  14.