home *** CD-ROM | disk | FTP | other *** search
/ Creative Review 34 / Creative-Review-CD-ROM-34.iso / pc / jkd / folio / scripts.cst / 00024_Script_QuitButton < prev    next >
Text File  |  1998-01-26  |  532b  |  32 lines

  1. on mouseEnter
  2.   global quitButton
  3.   overButton quitButton
  4.   updateStage
  5. end
  6.  
  7. on mouseDown
  8.   global quitButton
  9.   downButton quitButton
  10.   updateStage
  11. end
  12.  
  13. on mouseUp
  14.   global quitButton
  15.   overButton quitButton
  16.   updateStage
  17.   global crPath
  18.   set nextMovie = "close"
  19.   if the machineType = 256 then
  20.     go to movie crPath&nextMovie&"\"&nextMovie
  21.   else
  22.     go to movie crPath&nextMovie&":"&nextMovie
  23.   end if
  24.   play done
  25. end
  26.  
  27. on mouseLeave
  28.   global quitButton
  29.   normalButton quitButton
  30.   updateStage
  31. end
  32.