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 / SWFTimerCallback.js < prev    next >
Text File  |  2009-08-17  |  423b  |  23 lines

  1. $JavaScriptScrollWindow
  2.  
  3. var g_LastFrame = 0;
  4.  
  5. function timerInit() 
  6. {
  7.    //Sets the timer to check every .1 second
  8.    window.setInterval("timer()", 100);
  9. }
  10.  
  11. function timer() 
  12. {    
  13.    var destIndex = null;
  14.    
  15.    $SetIndexColors
  16.  
  17.    if( destIndex != null && g_LastFrame != CurFrame )
  18.    {
  19.       g_LastFrame = CurFrame;
  20.       ScrollToIndex( document.getElementById('$LinkDivID'), destIndex );
  21.    }
  22. }
  23.