home *** CD-ROM | disk | FTP | other *** search
/ ftp.novell.com / 2014.06.ftp.novell.com.tar / ftp.novell.com / forge / camtasia.msi / Cabs.w1.cab / WMSeek.js < prev    next >
Text File  |  2009-08-17  |  476b  |  19 lines

  1. function SeekTime( Time )
  2. {
  3.    if( document.mediaPlayer == undefined || document.mediaPlayer == null )
  4.    {
  5.       return;
  6.    }
  7.    
  8.    if (navigator.appName == "Netscape" && !window.GeckoActiveXObject ) 
  9.    {
  10.       document.mediaPlayer.getControls().setCurrentPosition( Time );
  11.       document.mediaPlayer.getControls().Play();
  12.    } 
  13.    else 
  14.    {
  15.       document.mediaPlayer.controls.currentPosition = Time;
  16.       document.mediaPlayer.controls.play();
  17.    }    
  18. }
  19.