home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 1995 September / PCD0995.ISO / files / gallery.dir / 00042.ls < prev    next >
Encoding:
Text File  |  1994-12-18  |  567 b   |  23 lines

  1. on mouseDown
  2.   set WhichSprite to the clickOn
  3.   puppetSprite(WhichSprite, 1)
  4.   set the castNum of sprite WhichSprite to the number of cast "UpTooth lit"
  5.   repeat while the stillDown
  6.     updateStage()
  7.   end repeat
  8. end
  9.  
  10. on mouseUp
  11.   repeat with x = 28 to 30
  12.     puppetSprite(x, 0)
  13.   end repeat
  14.   set the castNum of sprite the clickOn to the number of cast "UpTooth"
  15.   if the mouseCast = the number of cast "UpTooth" then
  16.     go("PowerUp")
  17.   end if
  18.   if the mouseCast = the number of cast "UpTooth lit" then
  19.     go("PowerUp")
  20.   end if
  21.   puppetSprite(the clickOn, 0)
  22. end
  23.