home *** CD-ROM | disk | FTP | other *** search
/ Buffalo Sabres 2001-2002 Promotional CD / Sabres.iso / pc / detectpc.dxr / 00034_disableQTSprite.ls < prev    next >
Encoding:
Text File  |  2001-09-05  |  196 b   |  14 lines

  1. global gDisableQT
  2.  
  3. on beginSprite me
  4.   if gDisableQT then
  5.     sprite(me.spriteNum).visible = 0
  6.   end if
  7. end
  8.  
  9. on endSprite me
  10.   if gDisableQT then
  11.     sprite(me.spriteNum).visible = 1
  12.   end if
  13. end
  14.