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

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