home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / chipcd20010102.iso / solutions / workshop / system.dcr / 00016.ls < prev    next >
Encoding:
Text File  |  2000-12-12  |  315 b   |  20 lines

  1. on mouseEnter
  2.   rewind(sprite(3))
  3.   cursor(280)
  4.   set the loc of sprite 3 to point(196, 258)
  5.   updateStage()
  6. end
  7.  
  8. on mouseLeave
  9.   cursor(0)
  10.   set the loc of sprite 3 to point(1000, 1000)
  11.   updateStage()
  12. end
  13.  
  14. on mouseUp
  15.   cursor(0)
  16.   go("startend")
  17.   set the loc of sprite 3 to point(1000, 1000)
  18.   updateStage()
  19. end
  20.