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 Rhinorhino 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
Joined
May 6, 2003
Messages
4
Location
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