View Full Version : Blinking text on title thread (or in bb code)
Tri@de
08-29-2005, 09:34 PM
It's possible make a bbcode making blink text?
How?
Someone can help me?
Borgs8472
08-29-2005, 11:05 PM
hail to my uber haxoring skills!
Tag: Blink
Replacement:
<BLINK>{param}</BLINK>
I pity the forum with that tag...
http://www.htmlcodetutorial.com/_BLINK.html
May not be compatible with all browsers :/
(which is good, IMO!)
Boofo
08-29-2005, 11:22 PM
hail to my uber haxoring skills!
Tag: Blink
Replacement:
<BLINK>{param}</BLINK>
I pity the forum with that tag...
http://www.htmlcodetutorial.com/_BLINK.html
May not be compatible with all browsers :/
(which is good, IMO!)
You are using Mozilla, right? That won't work in IE without some js. ;)
Borgs8472
08-30-2005, 01:00 AM
Which is good! :D
AllenSam
08-31-2005, 05:08 PM
Is there a way to edit vbulletin_global.js and get it to work on IE based browsers?
Boofo
08-31-2005, 05:10 PM
Is there a way to edit vbulletin_global.js and get it to work on IE based browswers?
Not that I know of but I have a little piece of js you can put in your headiclude that will make it work on IE and others. ;)
AllenSam
08-31-2005, 05:32 PM
Sure, that will work. I just thought it would have to go in vbulletin_global because I have another bb code that required javascript and I had to edit vbulletin_global...
Boofo
08-31-2005, 06:02 PM
Blinking Message Code
Add the following to the headinclude template.
<script language="javascript" type="text/javascript">
<!--
function doBlink() {
var blink = document.all.tags("BLINK")
for (var i=0; i<blink.length; i++)
blink[i].style.visibility = blink[i].style.visibility == "" ? "hidden" : ""
}
function startBlink() {
if (document.all)
setInterval("doBlink()",600)
}
window.onload = startBlink;
// -->
</script>
Then just use <blink>Text here</blink>. ;)
Cebby
12-20-2005, 05:46 PM
I inserted the above text into the headinclude template and now can do blinking text. (Thanks!!)
What I'd like to do is have my "search" text in the Navbar blink. I located what I thought was where I should put the code in the Nav template, but when I put the blink tag around what I think is the corrrect text, it includes text "array" next to search in my navbar (search is blinking though!!) How do I get rid of this Array tag - or am I doing this in the wrong place?
<td id="navbar_search" class="vbmenu_control"><a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow">$vbphrase<blink>[search]</blink></a> <script type="text/javascript"> vbmenu_register("navbar_search"); </script></td>
Here's a screenshot of what I'm getting...
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.