home *** CD-ROM | disk | FTP | other *** search
/ Practical Internet Web Designer 89 / PIWD89.iso / pc / main.dxr / behaviours_12_ifmac_disappear.ls < prev    next >
Encoding:
Text File  |  2003-12-08  |  241 b   |  13 lines

  1. property spriteNum, pNum, pName
  2. global gWhichPlatform
  3.  
  4. on beginSprite me
  5.   pNum = sprite(me.spriteNum)
  6.   pName = pNum.member.name
  7.   if gWhichPlatform = "Mac" then
  8.     sprite(pNum).visible = 0
  9.   else
  10.     sprite(pNum).visible = 1
  11.   end if
  12. end
  13.