home *** CD-ROM | disk | FTP | other *** search
/ Computer Buyer 1996 April / BYER_0496.iso / multimed / haight / data / shared.dir / 00538_Script_538 < prev    next >
Text File  |  1995-10-25  |  386b  |  20 lines

  1. on mouseDown
  2.   
  3.   global AutoPlayMode
  4.   
  5.   If AutoPlayMode = "OFF" then
  6.     beep
  7.     Set AutoPlayMode = "ON"
  8.     set the puppet of sprite 40 = true
  9.     set the castnum of sprite 40 = 542
  10.     updatestage
  11.   else
  12.     beep
  13.     beep
  14.     Set AutoPlayMode = "OFF"
  15.     set the puppet of sprite 40 = false
  16.     set the castnum of sprite 40 = 539
  17.     updatestage
  18.   end if
  19.   
  20. end