View Full Version : Can't stop my status bar text flickering?
Matrix
06-22-2002, 01:44 PM
Hi all -
I have a status bar text (to hide all the ugly hover-references) that is static in a window, but it flickers periodically and when the user hovers over links.
Does anyone know how to make this completely static? I've seen it on a site ... but can't remember which (not v. useful hey?!).
Any help would be appreciated.
Thanks in advance.
requestcode
06-22-2002, 04:49 PM
Could you post your code? It would help to see it.
ACJavascript
06-22-2002, 11:32 PM
Will this script help??
http://www.acjavascripts.com/StatusBarLinkD.html
-------
You could also just do this
<script language="javascript">
function hoverEnds(){
window.status="NO HOVERS HERE!!!!"
}
</script>
<body onload="hoverEnds()">
<a href="whatever.html" onMouseOver="hoverEnds()">Click Me</a>
--------
Hope this was helpful :D:D
Matrix
06-24-2002, 11:14 AM
Thanks AC ...
This sets the status bar text for a specific action; what I'm looking for is how to set the status bar to something static and permanent so that no matter what you do, the status bar is always the same (and doesn't flicker, even on hover over other links).
I'll keep looking :)
ACJavascript
06-24-2002, 04:27 PM
you could tyr this
<script language="javascript">
function status(){
window.status="Whatever"
}
</script>
<body onload="status()">
then you also put this in the links
<a href="whatever.html" onMouseOver="status()">HELLO</a>
That should work :)
Matrix
06-25-2002, 02:22 PM
Hi AC .. yep, that sounds reasonable ... I'll give it a try & let you know how it goes. Hopefully by running the same JS that's already running from the onload, the constant flickering should go away ...
Thanks again:thumbsup:
vBulletin® v3.8.2, Copyright ©2000-2012, Jelsoft Enterprises Ltd.