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

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