home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1997 February / macformat-047.iso / Demos / Simpsons Cartoon Studio™ Demo / Simpdata / simpmain / 00034_play button score script.ls < prev    next >
Encoding:
Text File  |  1996-09-06  |  255 b   |  15 lines

  1. global paletteVisibleP, gPlayFlag
  2.  
  3. on mouseDown
  4.   if the lastClick > 5 then
  5.     exit
  6.   end if
  7.   hideFieldHiliterSpr(appMgr)
  8.   if paletteVisibleP then
  9.     hidePalette(paletteMgr)
  10.   end if
  11.   if not gPlayFlag then
  12.     playBtnClick(interfaceMgr)
  13.   end if
  14. end
  15.