home *** CD-ROM | disk | FTP | other *** search
/ Jurassic Jigsaws / JURASSIC.BIN / mmvdemo.dir / 00236_Script_236 < prev    next >
Text File  |  1996-09-24  |  549b  |  25 lines

  1. on mousedown
  2.   put the clickon into whichsprite
  3.   put the name of member (the membernum of sprite whichsprite) into award
  4.   put award&"text" into awardtext
  5.   put the number of member awardtext into textnum
  6.   
  7.   puppetsound award & "SND"
  8.   set the membernum of sprite 6 = textnum
  9.   set the loc of sprite 6 = point (459, 205)
  10.   
  11.   updatestage
  12.   
  13.   repeat while the stilldown
  14.     nothing
  15.   end repeat
  16.   
  17.   repeat while soundbusy(1) 
  18.     if the mousedown then exit repeat
  19.     updatestage
  20.   end repeat
  21.   puppetsound 0
  22.   
  23.   
  24.   
  25. end