Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

scrolling status bar Error Message

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Please help me. I have a script that shows simething on the status bar, but it will not work in certain browsers, or even on the same browser at different servers. Here is the script:

<html><head><title>The Official Page For Idiotic Humor</title></head>
<script type=javascript>

myMsg = &quot;IDIOTIC HUMOR NEWS: Palestinian prime minister Yassir Arafat recently stated that he would refuse to attend the Middle Eastern summit this Monday. In response, President Clinton stated, 'Fine, then you're not going to my birthday party.' In world news, it has just been announced that a street in Russia will be named Lennon street, not after the communist leader, but after the Beatles' John Lennon. Sources here at IDIOTIC HUMOR NEWS inform us that nobody cares. As Al Gore idles away in preparation for the next debate, George W. Bush has already thought of his new slogan: 'Vote for me, not him' In sports, Shaquille O'neal was signed by the Lakers for a contract extension for a 3-Year $88 million dollar contract. The original agreement was $44 million, but the tides turned when the seven foot center threatened to step on Lakers coach Phil Jackson. &quot;
i=0
function scrollMsg(){
frontpart = myMsg.substring(i,myMsg.length)
backpart = myMsg.substring(0,i)
window.status = frontpart + backpart
if(i<myMsg.length){


i++
}
else{
i = 0


}
setTimeout(&quot;scrollMsg()&quot;,100)
}

</script>
<body onload=&quot;scrollMsg()&quot;>

Any advice at all would be a great help
thank you
 
Try <script language=&quot;javascript&quot;> rather than <script type=javascript>

Later, [sig]<p>Rob<br><a href=mailto:robschultz@yahoo.com>robschultz@yahoo.com</a><br>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br>
"Focus on the solution to the problem,<br>
not the obstacles in the way."<br>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~[/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top