View Single Post
Old 05-07-2009, 10:42 PM   PM User | #8
Richy
New Coder

 
Join Date: Mar 2008
Posts: 20
Thanks: 2
Thanked 0 Times in 0 Posts
Richy is an unknown quantity at this point
Quote:
Originally Posted by A1ien51 View Post
ticktock is the variable I was talking about.
I can't understand anything about Javascript. I tried to change;

Code:
if(xmlHttp.readyState == 4){
  var response = xmlHttp.responseText;
  TICKER.innerHTML = response;
  setTimeout('callServer()',5000);
  TICKER_CONTENT = document.getElementById("TICKER").innerHTML;
  TICKER_RIGHTTOLEFT = false;
  TICKER_SPEED = 2;
  TICKER_STYLE = "font-family:Arial; font-size:12px; color:#444444";
  TICKER_PAUSED = false;
  window.clearTimeout(ticktock);
  ticker_start(); 
}
And I added

Code:
ticktock = window.setTimeout("TICKER_tick()", 30);
in begining of the codes. Nothing changed :S..
Richy is offline   Reply With Quote