home *** CD-ROM | disk | FTP | other *** search
/ The Dynamic Human Version 2.0 / DH2_CD2.ISO / pc / files / map.dxr / Internal_24_mapMainTextObject.ls < prev    next >
Encoding:
Text File  |  1998-11-13  |  336 b   |  17 lines

  1. property textRegionList, textButtons
  2.  
  3. on new me, fullRegionList, whichSprite
  4.   set textRegionList to duplicate(fullRegionList)
  5.   set textButtons to new(script "buttonObject", whichSprite, textRegionList)
  6.   return me
  7. end
  8.  
  9. on death me
  10.   set textRegionList to 0
  11.   set textButtons to 0
  12. end
  13.  
  14. on updateMenu me
  15.   updateButton(textButtons)
  16. end
  17.