home *** CD-ROM | disk | FTP | other *** search
/ Better Homes & Gardens: …oking for Today - Chicken / Image.iso / pc / shared.dxr / 01012_Button.ls < prev    next >
Encoding:
Text File  |  1995-11-21  |  645 b   |  30 lines

  1. property spriteChan, releasedCast, pressedCast, group
  2. global theLegoList
  3.  
  4. on birth me, argList
  5.   return me
  6. end
  7.  
  8. on init me
  9.   set the releasedCast of me to the castNum of sprite the spriteChan of me
  10.   if the pressedCast of me = 0 then
  11.     set the pressedCast of me to the releasedCast of me
  12.   end if
  13.   puppetSprite(the spriteChan of me, 1)
  14.   addProp(theLegoList, spriteChan, me)
  15. end
  16.  
  17. on click me
  18.   click(the group of me, me)
  19. end
  20.  
  21. on press me
  22.   set the castNum of sprite the spriteChan of me to the pressedCast of me
  23.   updateStage()
  24. end
  25.  
  26. on release me
  27.   set the castNum of sprite the spriteChan of me to the releasedCast of me
  28.   updateStage()
  29. end
  30.