Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Ticker tape displays??

Status
Not open for further replies.

grizzman2000

Programmer
May 6, 2003
4
0
0
CA
Is there a using the a javascript to link into a website and get a live feed so show inside the doc???

Javascript code I'm using:
function Motion(msg,n)
{
var f = new String(msg);
return f.substr(n)+f.substr(0,n);
}

var f = this.getField("textline"); (what to make this link into a website url)

var code = new String("this.getField('textLine').value = Motion(this.getField('textLine').value,3);");

global.ttIsRunning = 1;

global.run = app.setInterval(code,300);


Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top