home *** CD-ROM | disk | FTP | other *** search
/ Jurassic Jigsaws / JURASSIC.BIN / mmvdemo.dir / 00079_Script_79 < prev    next >
Text File  |  1996-09-24  |  576b  |  18 lines

  1. on buttonscript
  2.   put the clickon into whichsprite
  3.   put the membernum of sprite whichsprite into whichmember
  4.   put the name of member whichmember into namestring
  5.   put namestring & "down" into downbutton
  6.   repeat while the stilldown
  7.     if rollover (whichsprite) then 
  8.       set the membernum of sprite whichsprite = member downbutton
  9.       updatestage
  10.     else
  11.       set the membernum of sprite whichsprite = whichmember
  12.       updatestage
  13.     end if
  14.   end repeat
  15.   set the membernum of sprite whichsprite = member whichmember
  16.   updatestage
  17. end buttonscript
  18.