• Das Erstellen neuer Accounts wurde ausgesetzt. Bei berechtigtem Interesse bitte Kontaktaufnahme über die üblichen Wege. Beste Grüße der Admin

Script works in IE but not in Firefox...

mikim

New member
This script works in IE. But not in Firefox... Can anybody tell me why? Many thanx in advance!

<script language="JavaScript" class="News">
/*
scrollable text script v0.1 by slaesher iris-arts.ch
*/
//scrollable text breite (in pixel)
var marqueewidth=420
//scrollable text hoehe (in pixel)
var marqueeheight=130
//scrollable text geschwindigkeit (je hoeher desto schnaeller)
var speed=2
//scrollable text inhalt
var marqueecontents='<div align="center"><span style="font-size: 18px; font-style: italic;">Speed News:</span><br><br>-<br><br>11./12. Juni 2005 SwissCup in Basel</div>'
if (document.all)
document.write('<marquee direction="up" scrollAmount='+speed+' style="width:'+marqueewidth+';height:'+marqueeheight+'">'+marqueecontents+'</marquee>')
function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",450)
intializemarquee()
}
}
function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write(marqueecontents)
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.height
scrollit()
}
function scrollit(){
if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.top-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.top=marqueeheight
scrollit()
}
}
window.onload=regenerate2
</script>
 
The script you provided uses functions and features not present in any browser software. Only internet exploder from Microsoft will display such content since the polluted functions in question originated from Microsoft in the first place. You will either have to live with a disfunctional script, rewrite it from scratch using approved standards to support real browsers or search for another script that was made for browsers and not for wannabe internet viewer malware.
To summarize: I do not see any chance of rewriting your script to make it work the way you would like it to do.
 
da sind doch deutsche Kommentare im Skript...daraus folgere ich das die Antwort eigentlich auch auf Deutsch sien kann..., oder?
 
sanchez schrieb:
da sind doch deutsche Kommentare im Skript...daraus folgere ich das die Antwort eigentlich auch auf Deutsch sien kann..., oder?
Die Tatsache, dass jemand ein in deutsch verfasstes Script verwendet, bedeutet nicht zwangsläufig, dass dieser jemand auch des Deutschen mächtig ist.
 
Zurück
Oben