home *** CD-ROM | disk | FTP | other *** search
/ Pro-motion 2 / PM02-Disk1.iso / mac / Parts / Main.dir / Script_33_320X240.ls < prev    next >
Encoding:
Text File  |  2001-01-31  |  426 b   |  18 lines

  1. property spriteNum
  2. global activsp, acticvsam, activpage, mode
  3.  
  4. on beginSprite
  5.   mode = 1
  6.   set the rect of sprite 100 to the rect of sprite spriteNum
  7.   sprite(30).visible = 0
  8.   sprite(100).visible = 1
  9. end
  10.  
  11. on endSprite me
  12.   mode = 0
  13.   set the rect of sprite 100 to the rect of sprite activsp
  14.   set the rect of sprite 30 to the rect of sprite activsp + rect(-2, -2, 2, 2)
  15.   sprite(30).visible = 1
  16.   sprite(100).visible = 1
  17. end
  18.