Erstmal danke christoph ich bin aber kein bisschen weitergekommen. bitte einen tipp in anfängersprache. bin nähmlich einer.
<script language="JavaScript">
<!--
function init() {
var ii;
for(ii=l; ii<10; ii++) {
img=new Image();
img.src="rc_"+ii+".gif";
}
setTimeout ("clock()", "1000");
}
function clock() {
var ii,
var date="new Date ();" <----hier wird er erwartet---
var hh=date.getHours();
ii=Math.floor(hh/10);
document.h1.src="rc_"+ii+".gif"
ii=hh%10;
document.h2.src="rc_"+ii+".gif"
var mm=date.getMinutes();
ii=math.floor(mm/10);
document.m1.src="rc_"+ii+".gif"
ii=mm%10;
document.m2.src="rc_"+ii+".gif"
var ss=date.getSeconds();
ii=math.floor(ss/10);
document.s1.src="rc_"+ii+".gif"
ii=ss%10;
document.s2.src="rc_"+ii+".gif"
setTimeout("clock()", "1000");
}
//-->
</script>
</head>
<body bgcolor="black" text="gold" onload="new Date();">
<img src="C:\Flo\welcome21.gif" alt=""
align="left" hspace="10" vspace"10" border="14">
<img src="C:\Flo\d-world.gif" alt""
align="right" hspace="10" vspace="10">
<br>
<img src=rc_0.gif width=15 height=20 name="h1">
<img src=rc_0.gif width=15 height=20 name="h2">
<img src=rc_x.gif width=15 height=20>
<img src=rc_0.gif width=15 height=20 name="m1">
<img src=rc_0.gif width=15 height=20 name="m2">
<img src=rc_x.gif width=15 height=20>
<img src=rc_0.gif width=15 height=20 name="s1">
<img src=rc_0.gif width=15 height=20 name="s2">