home *** CD-ROM | disk | FTP | other *** search
/ VCD Film, Television & An…on Creation Encyclopedia / mycd.iso / Direct5 / DATA.Z / SIMPDONE.DIR / 00009.ls < prev    next >
Encoding:
Text File  |  1996-03-15  |  387 b   |  20 lines

  1. on startMovie
  2.   puppetSprite(2, 1)
  3.   set the visible of sprite 3 to 1
  4.   set the visible of sprite 1 to 0
  5.   set the visible of sprite 4 to 0
  6. end
  7.  
  8. on createBall
  9.   global ball1
  10.   set ball1 to 0
  11.   set ball1 to new(script "Ball Parent Script")
  12.   set the visible of sprite 3 to 0
  13.   set the visible of sprite 1 to 1
  14.   set the visible of sprite 4 to 1
  15. end
  16.  
  17. on stopMovie
  18.   puppetSprite(2, 0)
  19. end
  20.