home *** CD-ROM | disk | FTP | other *** search
/ Computer Buyer 1995 November / SHOWCASE.ISO / files / shared.dir / 05304_Script_5304 < prev    next >
Text File  |  1995-06-14  |  598b  |  24 lines

  1. on mousedown
  2.   put the clickOn into whichSprite
  3.   puppetSprite whichSprite, TRUE
  4.   set the castnum of sprite whichSprite = the number of cast ("Quit lit")
  5.   repeat while the stilldown
  6.     updatestage
  7.   end repeat
  8. end
  9.  
  10. on mouseUp
  11.   set the castNum of sprite the clickon = the number of cast "Quit"
  12.   if the mousecast = the number of cast "Quit" then 
  13.     sound stop 1
  14.     sound stop 2
  15.     play movie "quit"
  16.   end if
  17.   if the mousecast = the number of cast "Quit lit" then 
  18.     sound stop 1
  19.     sound stop 2
  20.     play movie "quit"
  21.   end if
  22.   puppetSprite whichSprite, FALSE
  23. end
  24.