Wie kann ich das Script nochmal laden mit einem Verweis ohne das alles weiß wird?
Ich möchte die "xa,ya,xe,ye" ändern mit
Eingabefeldern "<input type="text" name="FEingabe" size="5">"
aber ich kann es immer nur einmalladen danach wird alles weiß.
es ist wichtig das die Eingabefelder nicht verschwinden.
Also wenn einer Zeit und Lust hat mir zu helfen bedanke ich mich.
<script LANGUAGE="JavaScript">
<!-- Begin
function ABC(xa,ya,xe,ye)
{
xs=xe-xa
ys=ye-ya
xss=Math.abs(xs)
yss=Math.abs(ys)
if (xss>=yss) {; s=xs; }
if (xss<yss) {; s=ys; }
s=Math.abs(s)
xf=xs/s
yf=ys/s
for (i = 0; i <= s; ++ i) {
x=xa+(i*xf)
y=ya+(i*yf)
if (document.layers) {
document.write("<layer top="+y+" left="+x+"><img SRC='rot.GIF' NOSAVE height=1 width=1></layer>")
}
if (document.all) {
document.write("<div style='position:absolute;top:"+y+"px;left:"+x+"px'><img SRC='rot.GIF' NOSAVE height=1 width=1></div>")
}
}
}
ABC(200,90,300,90)
ABC(200,90,300,9)
// End -->
</script>
<a href="javascript:ABC()">Verweis</a>
MFG Jürgen