I would like some help. I've already added a msg to my homepage. So whenever someone go to the page, the status bar on IE will display my msg. However, I would like to cancel out or hide the URL the status bar indicates whenever a mouse is drag over a link.
<SCRIPT>
message = "Welcome To Ta[M]iYa's World.^" +
"I'll Be Updating This Page Whenever I'm Free^" +
"Please Feel Free To Write In The Forum & GuestBook^" +
"Hope You Enjoyed Your Stay Here.^" +
"Do Come Back Again. Ta[M]iYa 2004 ...^" +
"^"
scrollSpeed = 25
lineDelay = 1500
txt = ""
function scrollText(pos) {
if (message.charAt(pos) != '^') {
txt = txt + message.charAt(pos)
status = txt
pauze = scrollSpeed
}
else {
pauze = lineDelay
txt = ""
if (pos == message.length-1) pos = -1
}
pos++
setTimeout("scrollText('"+pos+"')",pauze)
}
// Unhide -->
scrollText(0)
</SCRIPT>
__________________
Ta[M]iYa - There Is a Monster In My Car
<SCRIPT>
message = "Welcome To Ta[M]iYa's World.^" +
"I'll Be Updating This Page Whenever I'm Free^" +
"Please Feel Free To Write In The Forum & GuestBook^" +
"Hope You Enjoyed Your Stay Here.^" +
"Do Come Back Again. Ta[M]iYa 2004 ...^" +
"^"
scrollSpeed = 25
lineDelay = 1500
txt = ""
function scrollText(pos) {
if (message.charAt(pos) != '^') {
txt = txt + message.charAt(pos)
status = txt
pauze = scrollSpeed
}
else {
pauze = lineDelay
txt = ""
if (pos == message.length-1) pos = -1
}
pos++
setTimeout("scrollText('"+pos+"')",pauze)
}
// Unhide -->
scrollText(0)
</SCRIPT>
__________________
Ta[M]iYa - There Is a Monster In My Car

Comment