home *** CD-ROM | disk | FTP | other *** search
/ Computer Buyer 1995 November / SHOWCASE.ISO / files / vision.dir / 00208_Script_208 < prev    next >
Text File  |  1995-06-14  |  594b  |  20 lines

  1. on mousedown
  2.   put the clickOn into whichSprite
  3.   puppetSprite whichSprite, TRUE
  4.   set the castnum of sprite whichSprite = 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 = 5 to 7
  12.     puppetSprite x, 0
  13.   end repeat
  14.   puppetSprite (the clickon), 0
  15.   --  set the castNum of sprite the clickon = the number of cast "UpTooth"
  16.   --  if the mousecast = the number of cast "UpTooth" then go "DropScreen"
  17.   --  if the mousecast = the number of cast "UpTooth lit" then go "DropScreen"
  18.   go "DropScreen"
  19. end
  20.