home *** CD-ROM | disk | FTP | other *** search
/ Grandes Inventos / INVENTOS.bin / pc / media / shared.dxr / 02158_VideoUp.ls < prev    next >
Encoding:
Text File  |  1996-01-01  |  450 b   |  21 lines

  1. on mouseUp
  2.   global gTheAnalyzer
  3.   set p to the clickLoc
  4.   set whichClicked to GetClickedSmallVideoButton(p)
  5.   if whichClicked = "Rewind" then
  6.     gTheAnalyzer(mRewind)
  7.   else
  8.     if whichClicked = "FF" then
  9.       gTheAnalyzer(mFF)
  10.     else
  11.       if whichClicked = "Replay" then
  12.         gTheAnalyzer(mReplay)
  13.       else
  14.         if whichClicked = "PlayPause" then
  15.           gTheAnalyzer(mPlayPause)
  16.         end if
  17.       end if
  18.     end if
  19.   end if
  20. end
  21.