home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Magazin 1997 March / Image.iso / wd.dxr / Wettauswahl_70_PlayStopTaste.ls < prev    next >
Encoding:
Text File  |  1996-10-28  |  554 b   |  19 lines

  1. on mouseUp
  2.   if the visible of sprite 36 = 1 then
  3.     if the movieRate of sprite 36 = 0 then
  4.       if (the clickOn = 36) or (the clickOn = 37) then
  5.         set the movieTime of sprite 36 to 5
  6.         set the movieRate of sprite 36 to 1
  7.         set the visible of sprite 25 to 0
  8.         set the visible of sprite 26 to 1
  9.         SpriteCursor([36, 38], ["CursorFinger", "CursorFingerMask"])
  10.         SpriteCursor(37, 0)
  11.       end if
  12.     else
  13.       if (the clickOn = 36) or (the clickOn = 38) then
  14.         StopBetVideo()
  15.       end if
  16.     end if
  17.   end if
  18. end
  19.