Ich habe ein Javascript für den Ticker gefunden.
<CENTER>
<FORM NAME="Ticker"> style="position:absolute; top:169px; left:0px; width:1003px; height:84px;
<INPUT NAME="text" SIZE=25
VALUE=" Dies ist der neue Ticker"
</FORM>
</CENTER>
<SCRIPT>
<!--
/*Text box marquee by Dave Methvin,
Windows Magazine
May be used/modified if credit line is
retained*/
ScrollSpeed = 80
ScrollChars = 1
function ScrollMarquee() {
window.setTimeout('ScrollMarquee()',ScrollSpeed);
var msg = document.marquee1.text.value;
document.marquee1.text.value =
msg.substring(ScrollChars) +
msg.substring(0,ScrollChars);
}
ScrollMarquee()
//-->
</SCRIPT>
dieses JS funktioniert auch so wie ich es möchte, ich hab bloß noch ein finales problem. ich bekomm es nicht an die Stelle wo es hin soll.
style="position:absolute; top:169px; left:0px; width:1003px; height:84px;
das sind die Koordinaten für den Ticker, kann mir jemand sagen wie ich die mit ins JS bekomme?