grizzman2000
Programmer
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
+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
Javascript code I'm using:
function Motion(msg,n)
{
var f = new String(msg);
return f.substr
}
var f = this.getField("textline"
var code = new String("this.getField('textLine').value = Motion(this.getField('textLine').value,3);"
global.ttIsRunning = 1;
global.run = app.setInterval(code,300);
Thanks