home *** CD-ROM | disk | FTP | other *** search
/ Media Gallery 1995 June / MG6.ISO / mg.dig / 00183.ls < prev    next >
Encoding:
Text File  |  1995-04-20  |  427 b   |  16 lines

  1. on mouseUp
  2.   if isItAMovie(2) then
  3.     if the movieRate of sprite 2 = 1 then
  4.       puppetSprite(the clickOn, 1)
  5.       set the castNum of sprite the clickOn to the number of cast "play"
  6.       set the movieRate of sprite 2 to 0
  7.     else
  8.       puppetSprite(the clickOn, 1)
  9.       set the castNum of sprite the clickOn to the number of cast "pause"
  10.       set the movieRate of sprite 2 to 1
  11.     end if
  12.   else
  13.     beep()
  14.   end if
  15. end
  16.