Hallo EKKi
danke für deine schnelle antwort und für die info! werd ich mir noch genauer anschauen - jetzt funktioniert mein script wunderbar!
hättest du eine idee wie ich bewerkstelligen könnte, dass der text langsamer gescrollt wird! weil momentan ist er ja super - schnell! wäre nett wenn du mir da noch einmal helfe könntest in welche richtung ich da denken muss!
[CODE]
<html>
<head>
<script type="text/javascript">
function Scrollvor() {
scrollstop = setInterval('Movevor()',1)
}
function Scrollback() {
scrollstop = setInterval('Moveback()',1)
}
function noScroll(){
clearInterval(scrollstop);
}
function Movevor(){
var msg1 = document.form.text.value;
document.form.text.value = msg1.substring(1) + msg1.substring(0,1);
}
function Moveback(){
var msg2 = document.form.text.value;
var arr = msg2.split('');
var msg2 =arr.reverse().join('');
var text= msg2.substring(1) + msg2.substring(0,1);
var arr = text.split('');
var msg2 =arr.reverse().join('');
document.form.text.value = msg2;
}
</script>
</head>
<body>
<form name="form">
<input name="text" size=25 value="Hallo Welt - Hallo Welt - Wie geht es dir? ">
</form>
<a onMouseOver="Scrollvor()" onmouseout="noScroll()">vor</a>
<a onMouseOver="Scrollback()" onmouseout="noScroll()">zuruck</a>
</body>
</html>
[/CODE]
Danke, Danke, Danke!
Lg ewp