PDA

View Full Version : Blink the Welcome Bar when receiving a new PM!


Gary W
02-14-2004, 10:00 PM
Some tiny bits and pieces of this hack was adapted from Chen's vB 2 version of this hack, so kudos to him



What this hack does is it makes the 'Welcome, $username' box in the navbar blink by changing colors whenever a user has a new PM, so that it will catch their attention and they won't miss the PM



You can view the hack in action by viewing the attached screenshot to this post! (Meaning that it will blink like it's supposed to )



Anyways, here are the instructions:



Open up the navbar template and find: <td class="alt2" valign="top" nowrap="nowrap">

Replace with <td valign="top" nowrap="nowrap" <if condition="$bbuserinfo['pmunread']">id="pmBox"<else />class="alt2"</if>>

Find: <else />



<td class="alt2" nowrap="nowrap" style="padding:0px">

Above, add <if condition="$bbuserinfo['pmunread']">
<script type="text/javascript">
<!--
<!-- blink navbar on new pms -->
pmBox.bgColor='$stylevar[thead_bgcolor]';
setInterval("Timer()", 500);
x=1;
function Timer()
{
set=1;
if (x==0 && set==1)
{
pmBox.bgColor='$stylevar[tcat_bgcolor]';
x=1;
set=0;
}
if (x==1 && set==1)
{
pmBox.bgColor='$stylevar[thead_bgcolor]';
x=0;
set=0;
}
}
-->
</script></if>




All done! You can view the hack in action by viewing the attached screenshot! (Meaning that it will blink like it's supposed to )

AN-net
02-15-2004, 02:21 AM
nice hack, also plz format hack into a text file(forum rules):D

Gary W
02-15-2004, 12:11 PM
Okay I will right now, sorry about that this is my first mod released here :p

Gary W
02-15-2004, 12:16 PM
I also added the cool new screenshot I made :p

Azhrialilu
02-15-2004, 02:41 PM
I get a debug error everytime I install this hack... says pmuser isn't specified? really odd lol

Gary W
02-15-2004, 02:44 PM
Strange it's not like that for me, could you give me a screenshot?

Azhrialilu
02-15-2004, 03:23 PM
Sure.. I'll reinstall it and grab a snapshot for you :)

btekcan
02-16-2004, 08:18 AM
Yes same problem here......something is wrong...

rms10
02-17-2004, 02:19 PM
I like this idea but will wait until the above issue is resolved :)

imported_badpacket
02-17-2004, 03:21 PM
Same here.. I'd like to apply this when its working :)

rms10
02-18-2004, 06:08 PM
I went ahead and installed the mod. Works like a charm :) Thanks:)

Gary W
02-18-2004, 06:59 PM
Sorry about that guys, problem fixed ;)

btekcan
02-18-2004, 07:16 PM
Yesss,great now works...

Thanks

sabret00the
02-24-2004, 09:54 AM
very nice :)

Natch
02-24-2004, 10:32 AM
Cos the original one had some bugs, I went away and did this in a slightly different way GaryW - I used the same script that I had for my onmouseover thread/forum bgcolor changer from this thread (http://www.vbulletintemplates.com/mods/showthread.php?t=5397) - and I extended the effect to make the pmBox and the breadcrumb box alternate colours when a new pm is there ...

Major props for the idea - I love the effect and have sent myself numerous PM's just to test and re-test it :) :) :D

* Natch clicks install cos u gave me the idea :)

rms10
02-24-2004, 11:32 AM
Gary is it possible for you to also add some effect to this when the PM's box gets full?

Thanks :)

Natch
02-24-2004, 11:57 AM
It could flash faster in that case witha simple conditional around the timer statement ...

Boofo
03-06-2004, 03:21 PM
Cos the original one had some bugs, I went away and did this in a slightly different way GaryW - I used the same script that I had for my onmouseover thread/forum bgcolor changer from http://www.vbulletintemplates.com/mods/showthread.php?t=5397]this thread - and I extended the effect to make the pmBox and the breadcrumb box alternate colours when a new pm is there ...

Major props for the idea - I love the effect and have sent myself numerous PM's just to test and re-test it :) :) :D

* Natch clicks install cos u gave me the idea :)
Can we see yours?

rebelsrock06
03-06-2004, 04:54 PM
i cant get mine to work ? ?

i replaced

<td class="alt2" valign="top" nowrap="nowrap">

with

<td valign="top" nowrap="nowrap" <if condition="$bbuserinfo['pmunread']">id="pmBox"<else />class="alt2"</if>>

but the last instruction doesnt make much sense.

i found

<else />



<td class="alt2" nowrap="nowrap" style="padding:0px">

and then i put the other tags Where ? ? ? ??

rebelsrock06
03-06-2004, 04:56 PM
heheheh never mins, i had 2 colors thae same so i could see the blinking :lol:

Gary W
03-06-2004, 05:34 PM
Okay then you can just change the colour variables to a specified colour by replacing them with colour codes :)

Alzeimer
03-09-2004, 08:11 AM
Great, Installed and working, thanks!!!

Natch
03-10-2004, 05:24 AM
Can we see yours?
I'll try to mate - my gif animation skillz are a bit rusty ;)

BBL with it hopefully :) :)

Grab the JS file - the chgclass.js file - upload it to forumhome/clientscript and load that in your headinclude template.


<script type="text/javascript" src="$vboptions[bburl]/clientscript/vbulletin_chgclass.js"></script>


Then in the navbar template, make the following alterations ...

Find the first instance of:

<script type="text/javascript">
<!--


ADD AFTER:

<if condition="$bbuserinfo['pmunread']">
setInterval("Timer()", 1000);
x=1;
function Timer()
{
set=1;
if (x==0 && set==1)
{
changeSty('alt1','pmBox');
changeSty('alt2','breadBox');
x=1;
set=0;
}
if (x==1 && set==1)
{
changeSty('alt2','pmBox');
changeSty('alt1','breadBox');
x=0;
set=0;
}
}
</if>


Example:
http://www.mobileforces.org/pm-bar-blink.gif

It works with whatever colours you have in your style for alt1 and alt2, so translates across your board without trouble :)

Mr. Brian
03-18-2004, 09:43 PM
I don't think it works for gamma.

imported_Diana Notacat
03-25-2004, 08:11 AM
As spectacularly awesome as this is, it doesn't seem work in Mozilla or Netscape! It's only working on my IE. Anyway to spiff it up to work on other browsers?

wolfgang3
04-10-2004, 04:20 PM
nice add on! thx

Gary W
04-10-2004, 05:43 PM
Doesn't work for Netscape/Mozilla type browsers; I think the browsers are like that, they don't like the scripting that makes this work.

Natch
04-10-2004, 10:28 PM
<a href="http://www.vbulletintemplates.com/mods/showpost.php?p=47441&postcount=23" target="_blank">This one</a> (post #23 in this thread) does work in Mozilla / Netscrape .... the animation was recorded on Firebird ...

Props to Gary for the concept...

Jolten
04-11-2004, 05:19 PM
Works like a charm. I had to add an extra id to accomodate an extra table cell in my suctom header, but it works fabulously. Thanks Gary.

Skaterscafe.com
04-15-2004, 04:46 AM
Works great for me also, thanks!

My site is in black & white, is there a easy way to change the blink color to red or yellow?

RichieBoy67
04-21-2004, 11:20 PM
Awesome!!!!

You are the man Gary!!!

Thanks!!

Skaterscafe.com
04-22-2004, 05:52 AM
Works great for me also, thanks!

My site is in black & white, is there a easy way to change the blink color to red or yellow?

Anyone?

Jolten
04-22-2004, 04:47 PM
Skater.. jsut set up a new custom style in the Main CSS. Then change the The script to use yoru new style in this line


pmBox.bgColor='$stylevar[thead_bgcolor]';



Instead of thead_bgcolor insert your new style.

Onkel_Tom
06-17-2004, 08:31 AM
thanks for this hack, works great !

imported_350Chevy
06-17-2004, 03:41 PM
Skater.. jsut set up a new custom style in the Main CSS. Then change the The script to use yoru new style in this line


pmBox.bgColor='$stylevar[thead_bgcolor]';



Instead of thead_bgcolor insert your new style.

or..


pmBox.bgColor='red';



Or whatever color of your choice.. ;)

imported_zahco
06-18-2004, 09:15 AM
dir Gary W
Thanks a lot for this hack and i have istaled it and it working Great .

And i thanks a lot to Dir / 350Chevy
who showed me this thread

best regards
zahco

Onkel_Tom
06-20-2004, 10:22 PM
Hi, a small problem with this hack if the access to the PN system is not allowed by the admin for a special usergroup like "awaiting confirmation" and having the "New user welcome PN (https://vborg.vbsupport.ru/showthread.php?t=63269)" Hack installed.
The user get's the blinking PN area but can't read the mail unless he confirms his registration and an admin has activated his account.

Solution:

find in template navbar:
<if condition="$bbuserinfo['pmunread']">
<script type="text/javascript">
<!--
<!-- blink navbar on new pms -->
pmBox.bgColor='$stylevar[thead_bgcolor]';
setInterval("Timer()", 500);
x=1;
function Timer()
{
set=1;
if (x==0 && set==1)
{
pmBox.bgColor='$stylevar[tcat_bgcolor]';
x=1;
set=0;
}
if (x==1 && set==1)
{
pmBox.bgColor='$stylevar[thead_bgcolor]';
x=0;
set=0;
}
}
-->
</script></if>

replace it with:
<if condition="$show['pmstats']"><if condition="$bbuserinfo['pmunread']">
<script type="text/javascript">
<!--
<!-- blink navbar on new pms -->
pmBox.bgColor='$stylevar[thead_bgcolor]';
setInterval("Timer()", 500);
x=1;
function Timer()
{
set=1;
if (x==0 && set==1)
{
pmBox.bgColor='$stylevar[tcat_bgcolor]';
x=1;
set=0;
}
if (x==1 && set==1)
{
pmBox.bgColor='$stylevar[thead_bgcolor]';
x=0;
set=0;
}
}
-->
</script></if></if>

With this change vB first check if the PN system is activated and then let blink the PN area. Otherwise no blinking will be done.

Bounce
06-23-2004, 06:20 PM
brilliant stuff gary :)

installed and working treat :D

imported_Infopro
06-24-2004, 01:35 PM
Very nice, thank you. :)

Baptizer
07-02-2004, 03:39 PM
Got it. Installed it. Customized it. Loving it. Thanks.

Bryan Ex
07-26-2004, 03:36 AM
Worked great and especially once I changed the background classes to alt1 & 2 except that I use the vB nav bar in my photopost gallery and it created all kinds of script errors. I had to uninstall but will be keeping this bookmarked for a stand alone board I'm working on next.

Littlebit
08-01-2004, 07:11 PM
Worked great and especially once I changed the background classes to alt1 & 2 except that I use the vB nav bar in my photopost gallery and it created all kinds of script errors. I had to uninstall but will be keeping this bookmarked for a stand alone board I'm working on next. You can also keep an eye out at http://vbadvanced.com . They're coming out with a gallery that is seamless with vB and for less money.

Eagle Creek
08-11-2004, 09:48 AM
//Installed

It's not working well with all skins :(

YLP1
08-15-2004, 07:30 PM
Hi all,

I am getting this broken code on my PM box...how do I fix it?

I am also getting an error on the page

Line 434
Char 1
Error: 'pmBox' is undefined
Code" 0

Natch
08-15-2004, 11:39 PM
It's a broken conditional statement - probably you have an extra > inside your conditional?

Re-check your postbit / postbit_legacy modification.

hdaniel1
08-20-2004, 07:40 PM
Here is what I did so this mod works on every browser.

First, as usual open up the navbar template and find this.
<td class="alt2" valign="top" nowrap="nowrap">

You replace it with this.


<td valign="top" nowrap="nowrap" <if condition="$bbuserinfo['pmunread']">id="pmBox"<else /> class="alt2"</if>>
<if condition="$bbuserinfo['pmunread']">
<script type="text/javascript">
<!--
<!-- blink navbar on new pms -->
document.getElementById('pmBox').bgColor='$styleva r[thead_bgcolor]';
setInterval("Timer()", 500);
x=1;
function Timer()
{
set=1;
if (x==0 && set==1)
{
document.getElementById('pmBox').bgColor='$styleva r[tcat_bgcolor]';
x=1;
set=0;
}
if (x==1 && set==1)
{
document.getElementById('pmBox').bgColor='$styleva r[thead_bgcolor]';
x=0;
set=0;
}
}
-->
</script></if>

That is all!


I replaced pmBox.bgColor with document.getElementById('pmBox').bgColor.

EDIT: Also this works with 3.0.3.

SaN-DeeP
08-31-2004, 10:08 PM
Here is what I did so this mod works on every browser.


That is all!


I replaced pmBox.bgColor with document.getElementById('pmBox').bgColor.

EDIT: Also this works with 3.0.3.thnx dude.
works perfect on vb 3.0.3

Regards

DarknessDivine
09-08-2004, 04:02 PM
Works like a dream

mholtum
09-08-2004, 07:08 PM
Works great in IE but not in Mozilla

hdaniel1
09-08-2004, 07:40 PM
Works great in IE but not in Mozilla
Did you follow my updated instructions on how to make it work on all browsers?

mholtum
09-08-2004, 08:14 PM
Here is what I did so this mod works on every browser.

First, as usual open up the navbar template and find this.
<td class="alt2" valign="top" nowrap="nowrap">

You replace it with this.


<td valign="top" nowrap="nowrap" <if condition="$bbuserinfo['pmunread']">id="pmBox"<else /> class="alt2"</if>>
<if condition="$bbuserinfo['pmunread']">
<script type="text/javascript">
<!--
<!-- blink navbar on new pms -->
document.getElementById('pmBox').bgColor='$styleva r[thead_bgcolor]';
setInterval("Timer()", 500);
x=1;
function Timer()
{
set=1;
if (x==0 && set==1)
{
document.getElementById('pmBox').bgColor='$styleva r[tcat_bgcolor]';
x=1;
set=0;
}
if (x==1 && set==1)
{
document.getElementById('pmBox').bgColor='$styleva r[thead_bgcolor]';
x=0;
set=0;
}
}
-->
</script></if>

That is all!




EDIT: Also this works with 3.0.3.
Yes, I followed these instructions

imported_Zen
09-08-2004, 08:45 PM
Yes, I followed these instructions


small errors in the code above.. works great BTW

extra spaces have crept in at $styleva
:
document.getElementById('pmBox').bgColor='$styleva r[thead_bgcolor]';

:)

mholtum
09-08-2004, 10:44 PM
Fixed that, thanks

djjeffa
10-16-2004, 11:42 PM
installed and work great thanks guys

Randyjc
11-23-2004, 01:56 PM
<if condition="$bbuserinfo['userid']">

<td valign="top" nowrap="nowrap" <if condition="$bbuserinfo['pmunread']">id="pmBox"<else /> class="alt2"</if>>
<if condition="$bbuserinfo['pmunread']">
<script type="text/javascript">
<!--
<!-- blink navbar on new pms -->
document.getElementById('pmBox').bgColor='$styleva r[thead_bgcolor]';
setInterval("Timer()", 500);
x=1;
function Timer()
{
set=1;
if (x==0 && set==1)
{
document.getElementById('pmBox').bgColor='$styleva r[tcat_bgcolor]';
x=1;
set=0;
}
if (x==1 && set==1)
{
document.getElementById('pmBox').bgColor='$styleva r[thead_bgcolor]';
x=0;
set=0;
}
}
-->
</script></if>


so weird i have it like this but it won't work for 3.0.3

TwinsForMe
11-23-2004, 05:49 PM
Works for me. Thanks. :)

vb 3.0.3 in Netscape

secret1980
11-24-2004, 12:38 AM
it's really a nice hack..Thx! for it :D

just now I noticed that after installing this hack...I am getting log in forum again in the middle even though after logging on..I have captured a screen shot here it is :

http://img99.exs.cx/img99/5316/copy21.jpg

waiting for ur help...

Thanking u,
Pavan Kumar

Rocket_Cowboy
11-29-2004, 02:22 AM
Nevermind ... if I'd read the entire thread, I'd see what I was missing ...

LOL

Mechanical Mind
12-17-2004, 11:45 PM
Okay then you can just change the colour variables to a specified colour by replacing them with colour codes :)

Can anybody point out the color variables? I am not sure where to install the color codes in that section of code?

imported_Gottcha
12-21-2004, 10:15 PM
Got it working and looks great...will be a big help. Anyway to have it work with vbportal installed? My start page is vbportal and it doesnt notify through there. Any mod to get it working?

Guy G
01-25-2005, 07:44 PM
I have modified it to be like in vbulletin.org, no javascript is needed.

post is here if anyone wants it:
https://vborg.vbsupport.ru/showpost.php?p=602028&postcount=6

peterska2
01-25-2005, 08:07 PM
Thanks muchly appreciated

Motoscene
02-09-2005, 05:03 PM
Thanks GaryW I like this feature alot and so do all my forum members. Great work.

mholtum
02-16-2005, 05:53 AM
I am trying to remove this as I found one I would rather use and cant find the code in my navbar template.. Weird. Yet it still works

Electronic Punk
02-16-2005, 07:38 AM
Nice one :D

GSX-Racing
06-01-2005, 10:07 AM
I couldn't get it to flash. It only changed the bg colour, didn't flash it back and forth.

EDIT: Got it working, just had some extra spaces in the code.

Thanks, looks tight.

GSX-Racing
06-04-2005, 01:04 AM
I had it installed once, then had to re import stuff so lost my mods. I just did it again (like 3 times) and I'm not sure what I did wrong however, if you look at the attached screenshot you will see the problem.

It flashes just fine, but there is a little area to the right that doesn't flash. I can't seem to get rid of that little blank space. Can anyone please help?

Here is what my template looks like where I made the changes.


</td>

<if condition="$bbuserinfo['userid']">

<td valign="top" nowrap="nowrap" <if condition="$bbuserinfo['pmunread']">id="pmBox"<else />class="alt2"</if>>
<div class="smallfont">
<!--<span style="float:$stylevar[right]">[<a href="login.phtml?$session[sessionurl]do=logout&amp;u=$bbuserinfo[userid]" onclick="return log_out()">$vbphrase[log_out]</a>]</span>-->


<if condition="$bbuserinfo['pmunread']">
<script type="text/javascript">
<!--
<!-- blink navbar on new pms -->
document.getElementById('pmBox').bgColor='$styleva r[thead_bgcolor]';
setInterval("Timer()", 500);
x=1;
function Timer()
{
set=1;
if (x==0 && set==1)
{
document.getElementById('pmBox').bgColor='$styleva r[tcat_bgcolor]';
x=1;
set=0;
}
if (x==1 && set==1)
{
document.getElementById('pmBox').bgColor='$styleva r[thead_bgcolor]';
x=0;
set=0;
}
}
-->
</script></if>

<else />

<td class="alt2" nowrap="nowrap" style="padding:0px">

Edit 1:In the second attachment you can see a bit better how the table extends too far.

Edit 2: In the third attachment you can see a couple extra frames that I don't think should be there.

tscbh
06-14-2005, 12:41 AM
I read through the forum, but it didn't work.. I got this error:

line: 381
car: 1
error: 'pmBox' is undefined
Code: 0
URL: ...forumdisplay.php?f=3

even if I undo all changes. I still got that error.

What I did was, open dreamweaver, open file, "vbulletin-style.xml, I do a search replace & replace:

search:
<td class="alt2" valign="top" nowrap="nowrap">
replace with:
<td valign="top" nowrap="nowrap" <if condition="$bbuserinfo['pmunread']">id="pmBox"<else /> class="alt2"</if>>
<if condition="$bbuserinfo['pmunread']">
<script type="text/javascript">
<!--
<!-- blink navbar on new pms -->
document.getElementById('pmBox').bgColor='$styleva r[thead_bgcolor]';
setInterval("Timer()", 500);
x=1;
function Timer()
{
set=1;
if (x==0 && set==1)
{
document.getElementById('pmBox').bgColor='$styleva r[tcat_bgcolor]';
x=1;
set=0;
}
if (x==1 && set==1)
{
document.getElementById('pmBox').bgColor='$styleva r[thead_bgcolor]';
x=0;
set=0;
}
}
-->
</script></if>

nothing else is done. Now, I hate the error java script message. By the way, does this work for vb3.0.7?

SlipNslide281
07-13-2005, 03:30 PM
I got it to flash, but if I want it to flash Red, and background color what do I change in the code? I did this:

<!--
<!-- blink navbar on new pms -->
pmBox.bgColor='thead_bgcolor';
setInterval("Timer()", 500);
x=1;
function Timer()
{
set=1;
if (x==0 && set==1)
{
pmBox.bgColor='$stylevar[red]';
x=1;
set=0;
}
if (x==1 && set==1)
{
pmBox.bgColor='$stylevar[thead_bgcolor]';
x=0;
set=0;
}
}

but it still flashes dark grey and light grey.

nothing else is done. Now, I hate the error java script message. By the way, does this work for vb3.0.7?
Yes I have it working on 3.0.7 Just not the color I want.

ciocsy
07-20-2005, 11:10 PM
i've just installed the mod and it works perfectly.
thanks a lot.

Shaun M
07-22-2005, 08:37 PM
i've just installed the mod and it works perfectly.
thanks a lot.

Well I know it works as it's on one of the forums I visit but for the life of me I cant get it to work on mine.

Have I done something really dumb?

<script type="text/javascript">
<!--
function log_out()
{
ht = document.getElementsByTagName("html");
ht[0].style.filter = "progid:DXImageTransform.Microsoft.BasicImage(grays cale=1)";
if (confirm('$vbphrase[sure_you_want_to_log_out]'))
{
return true;
}
else
{
ht[0].style.filter = "";
return false;
}
}
//-->
</script>

<br />

<!-- breadcrumb, login, pm info -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="alt1" width="100%">
<if condition="is_array($navbits)">
<table cellpadding="0" cellspacing="0" border="0">
<tr valign="bottom">
<td><a href="#" onclick="history.back(1)"><img src="$stylevar[imgdir_misc]/navbits_start.gif" alt="$vbphrase[go_back]" border="0" /></a></td>
<td>&nbsp;</td>
<td width="100%"><span class="navbar"><a href="$vboptions[forumhome].php?$session[sessionurl]" accesskey="1">$vboptions[bbtitle]</a></span> $navbits[breadcrumb]</td>
</tr>
<tr>
<td class="navbar" style="font-size:10pt; padding-top:1px" colspan="3"><a href="$scriptpath"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_finallink.gif" alt="$vbphrase[reload_this_page]" border="0" /></a> <strong>$navbits[lastelement]</strong></td>
</tr>
</table>
<else />
<div class="navbar" style="font-size:10pt"><a href="$vboptions[forumhome].php?$session[sessionurl]" accesskey="1"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_start.gif" alt="" border="0" /></a> <strong>$vboptions[bbtitle]</strong></div>
</if>
</td>

<if condition="$bbuserinfo['userid']">

<td valign="top" nowrap="nowrap" <if condition="$bbuserinfo['pmunread']">id="pmBox"<else />class="alt2"</if>>
<div class="smallfont">
<!--<span style="float:$stylevar[right]">[<a href="login.php?$session[sessionurl]do=logout&amp;u=$bbuserinfo[userid]" onclick="return log_out()">$vbphrase[log_out]</a>]</span>-->
<strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong><br />
$pcount<br />
<phrase 1="$pmbox[lastvisitdate]" 2="$pmbox[lastvisittime]">$vbphrase[last_visited_x_at_y]</phrase>
<if condition="$show['pmstats']"><br /><phrase 1="$vbphrase[unread_x_nav_compiled]" 2="$vbphrase[total_x_nav_compiled]" 3="$session[sessionurl]">$vbphrase[private_messages_nav]</phrase></if>
<br />$rcount
</div>
</td>

<if condition="$bbuserinfo['pmunread']">
<script type="text/javascript">
<!--
<!-- blink navbar on new pms -->
pmBox.bgColor='$stylevar[thead_bgcolor]';
setInterval("Timer()", 500);
x=1;
function Timer()
{
set=1;
if (x==0 && set==1)
{
pmBox.bgColor='$stylevar[tcat_bgcolor]';
x=1;
set=0;
}
if (x==1 && set==1)
{
pmBox.bgColor='$stylevar[thead_bgcolor]';
x=0;
set=0;
}
}
-->
</script></if>

<else />

<td class="alt2" nowrap="nowrap" style="padding:0px">

<!-- login form -->
<form action="login.php" method="post" onsubmit="md5hash(vb_login_password,vb_login_md5password,vb_ login_md5password_utf)">
<script type="text/javascript" src="clientscript/vbulletin_md5.js"></script>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<tr>
<td class="smallfont">$vbphrase[username]</td>
<td><input type="text" class="button" name="vb_login_username" id="navbar_username" size="10" accesskey="u" tabindex="1" value="$vbphrase[username]" onfocus="if (this.value == '$vbphrase[username]') this.value = '';" /></td>
<td class="smallfont" colspan="2" nowrap="nowrap"><label for="cb_cookieuser_navbar"><input type="checkbox" name="cookieuser" value="1" tabindex="3" id="cb_cookieuser_navbar" accesskey="c" checked="checked" />$vbphrase[remember_me]</label></td>
</tr>
<tr>
<td class="smallfont">$vbphrase[password]</td>
<td><input type="password" class="button" name="vb_login_password" size="10" accesskey="p" tabindex="2" /></td>
<td><input type="submit" class="button" value="$vbphrase[log_in]" tabindex="4" title="$vbphrase[enter_username_to_login_or_register]" accesskey="s" /></td>
</tr>
</table>
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="login" />
<input type="hidden" name="forceredirect" value="1" />
<input type="hidden" name="vb_login_md5password" />
<input type="hidden" name="vb_login_md5password_utf" />
</form>
<!-- / login form -->

</td>

</if>

</tr>
</table>
<!-- / breadcrumb, login, pm info -->

<!-- nav buttons bar -->
<div align="center">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px">
<tr align="center">
<!--<td class="vbmenu_control"><a href="$vboptions[forumhome].php?$session[sessionurl]">Home</a></td>-->

<if condition="$show['member']">
<td class="vbmenu_control"><a href="usercp.php?$session[sessionurl]">$vbphrase[user_cp]</a></td>
</if>
<if condition="$show['registerbutton']">
<td class="vbmenu_control"><a href="register.php?$session[sessionurl]">$vbphrase[register]</a></td>
</if>
<td class="vbmenu_control"><a href="faq.php?$session[sessionurl]" accesskey="5">$vbphrase[faq]</a></td>
<td class="vbmenu_control"><a href="memberlist.php?$session[sessionurl]">$vbphrase[members_list]</a></td>
<td class="vbmenu_control"><a href="article.php?$session[sessionurl]">Articles</a></td>
<td class="vbmenu_control"><a href="calendar.php?$session[sessionurl]">$vbphrase[calendar]</a></td>
<if condition="$show['popups']">
<if condition="$show['searchbuttons']">
<if condition="$show['member']">
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getnew" accesskey="2">$vbphrase[new_posts_nav]</a></td>
<else />
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getdaily" accesskey="2">$vbphrase[todays_posts]</a></td>
</if>
<td id="navbar_search" class="vbmenu_control"><a href="search.php?$session[sessionurl]" accesskey="4">$vbphrase[search]</a> <script type="text/javascript"> vbmenu_register("navbar_search"); </script></td>
</if>
<if condition="$bbuserinfo['userid']">
<td id="usercptools" class="vbmenu_control"><a href="#usercptools">$vbphrase[quick_links]</a> <script type="text/javascript"> vbmenu_register("usercptools"); </script></td>
</if>
<else />
<if condition="$show['searchbuttons']">
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]" accesskey="4">$vbphrase[search]</a></td>
<if condition="$show['member']">
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getnew" accesskey="2">$vbphrase[new_posts_nav]</a></td>
<else />
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getdaily" accesskey="2">$vbphrase[todays_posts]</a></td>
</if>
</if>
<td class="vbmenu_control"><a href="forumdisplay.php?$session[sessionurl]do=markread">$vbphrase[mark_forums_read]</a></td>
<if condition="$bbuserinfo['userid']">
<td class="vbmenu_control"><a href="#" onclick="window.open('misc.php?$session[sessionurl]do=buddylist&amp;focus=1','buddylist','statusbar=no,me nubar=no,toolbar=no,scrollbars=yes,resizable=yes,w idth=250,height=300'); return false;">$vbphrase[open_buddy_list]</a></td>
</if>
</if>
<if condition="$bbuserinfo['userid']">
<td class="vbmenu_control"><a href="login.php?$session[sessionurl]do=logout&amp;u=$bbuserinfo[userid]" onclick="return log_out()">$vbphrase[log_out]</a></td>
</if>
</tr>
</table>
</div>
<!-- / nav buttons bar -->

<br />
<br />

<if condition="$show['popups']">
<!-- NAVBAR POPUP MENUS -->

<if condition="$show['searchbuttons']">
<!-- header quick search form -->
<div class="vbmenu_popup" id="navbar_search_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">$vbphrase[search_forums]</td>
</tr>
<tr>
<td class="vbmenu_option" title="nohilite">
<form action="search.php" method="post">
<input type="hidden" name="do" value="process" />
<input type="hidden" name="showposts" value="0" />
<input type="text" class="bginput" name="query" size="20" />$gobutton<br />
</form>
</td>
</tr>
<tr>
<td class="vbmenu_option"><a href="search.php?$session[sessionurl]" accesskey="4">$vbphrase[advanced_search]</a></td>
</tr>
</table>
</div>
<!-- / header quick search form -->
</if>

<if condition="$show['member']">
<!-- user cp tools menu -->
<div class="vbmenu_popup" id="usercptools_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">

<tr><td class="thead">$vbphrase[quick_links]</td></tr>
<if condition="$vboptions['enablesearches']"><tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=getnew">$vbphrase[new_posts_nav]</a></td></tr></if>
<tr><td class="vbmenu_option"><a href="forumdisplay.php?$session[sessionurl]do=markread">$vbphrase[mark_forums_read]</a></td></tr>
<tr><td class="vbmenu_option"><a href="#" onclick="window.open('misc.php?$session[sessionurl]do=buddylist&amp;focus=1','buddylist','statusbar=no,me nubar=no,toolbar=no,scrollbars=yes,resizable=yes,w idth=250,height=300'); return false;">$vbphrase[open_buddy_list]</a></td></tr>

<tr><td class="thead"><a href="usercp.php?$session[sessionurl]">$vbphrase[user_control_panel]</a></td></tr>
<if condition="$show['siglink']"><tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editsignature">$vbphrase[edit_signature]</a></td></tr></if>
<if condition="$show['avatarlink']"><tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editavatar">$vbphrase[edit_avatar]</a></td></tr></if>
<tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editprofile">$vbphrase[edit_profile]</a></td></tr>
<tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editoptions">$vbphrase[edit_options]</a></td></tr>

<tr><td class="thead">$vbphrase[miscellaneous]</td></tr>
<if condition="$show['pmstats']"><tr><td class="vbmenu_option"><a href="private.php?$session[sessionurl]">$vbphrase[private_messages]</a></td></tr></if>
<tr><td class="vbmenu_option"><a href="topposters.php?$session[sessionurl]">Display Top Posters</a></td></tr>
<tr><td class="vbmenu_option"><a href="subscription.php?$session[sessionurl]">$vbphrase[subscribed_threads]</a></td></tr>
<tr><td class="vbmenu_option"><a href="member.php?$session[sessionurl]u=$bbuserinfo[userid]">$vbphrase[my_profile]</a></td></tr>
<if condition="$show['wollink']"><tr><td class="vbmenu_option"><a href="online.php?$session[sessionurl]">$vbphrase[whos_online]</a></td></tr></if>

</table>
</div>
<!-- / user cp tools menu -->
</if>
<!-- / NAVBAR POPUP MENUS -->
</if>

Tony G
07-23-2005, 12:58 AM
What's the problem you're getting? It just doesn't appear?

Shaun M
07-24-2005, 09:41 AM
What's the problem you're getting? It just doesn't appear?


Thats rignt. There's no flashing? I wonder if I've put the code in incorectly? :confused:

Loki12
07-24-2005, 10:32 AM
Tested and working on version 3.5.0 Beta 4. :)

Tony G
07-24-2005, 10:57 AM
Thats rignt. There's no flashing? I wonder if I've put the code in incorectly? :confused:

What version are you using? I'd say that's the case as many have reported it working on later 3.0x versions. Just double check over the added code.

Shaun M
07-24-2005, 11:18 AM
What version are you using? I'd say that's the case as many have reported it working on later 3.0x versions. Just double check over the added code.


I'm on 3.0.7 I'll revert back to the old code (before I modified it) and try it again. Glad I made backups :)

Tony G
07-24-2005, 11:35 AM
I wouldn't advise ever installing a modification and not making backups. ;)

Shaun M
07-24-2005, 11:35 AM
I'm on 3.0.7 I'll revert back to the old code (before I modified it) and try it again. Glad I made backups :)

Well I've redone the additions and it still doesn't work :ermm:

Tony G
07-24-2005, 11:36 AM
Are you making sure that you have unread messages and that when testing this? Tried sending new, fresh PM's and testing it like that?

Shaun M
07-24-2005, 11:43 AM
That's the way I tested it. I sent myself a new message. :/ I just cant see where the code is different to that give here. :(

chariotdriver
07-24-2005, 06:49 PM
I have had this installed, and it works, but at what point is it supposed to stop blinking?
Mine keeps blinking until I get to the part where it is "Send notification of recieving PM" or whatever that last message is. It does not stop blinking even when I have opened the PM. Is this how it supposed to work?

Blackhat
07-26-2005, 08:39 AM
I dont think it works with firefox

DrewzR/T
07-26-2005, 04:36 PM
Yeah I dont think it does either. It worked for the IE users though. All it does it turn red when i have a new PM. Ive also added in the new codes and still didnt work.

Shaun M
07-28-2005, 12:43 AM
Well when I checked in IE it's working :D

Shame it doesn't in FF though :(

hotwheels
08-19-2005, 12:22 AM
kewl hack, i added it to the blinking red light..............schweet

ManagerJosh
09-30-2005, 02:03 AM
Gonna give this a quick bump and let everyone know this is vBulletin 3.5 Compatible :)

Colejo
10-02-2005, 11:14 PM
Gonna give this a quick bump and let everyone know this is vBulletin 3.5 Compatible :)

Thanks I just added it and it works.

rb290
10-16-2005, 09:33 PM
this is not for vB 3.5.0 ?

EDIT: just saw the post saying its allowed with 3.5.0

thanks.

AtoZ
11-05-2005, 11:18 PM
Excellent! Just upgraded to 3.5 and it works!!

If it doesn't blink, check your stylevars - If tcat and thead are the same color it won't blink. I changed the javascript code so it uses alt1 and alt2 instead.

Nitewalker
12-07-2005, 01:38 AM
does it work on 3.0.10 ? i dun think so

docvader
01-07-2006, 03:21 AM
It won't blink on FF or Netscape. Anyone know how to fix the code for us FF users??

cloyal
01-07-2006, 08:16 AM
Yes could some one please figure this out? Please? I've installed this one and this one.

https://vborg.vbsupport.ru/showthread.php?t=68135&highlight=blinking+pm

And Neither work in FF. Btw the one created in this thread will blink but locks up the other one in the other thread in IE.

kellyandmike
04-07-2006, 03:15 AM
Perfect! Thanks for the easy explanation too...

TheUGN.com
06-04-2006, 08:55 PM
I am Using Vb 3.5.4

I added this script to Navbar, but its not blinking :( Can anyone please direct me to what i need to add to make this work. Thanks

<if condition="$show['pmstats']"><if condition="$bbuserinfo['pmunread']">
<script type="text/javascript">
<!--
<!-- blink navbar on new pms -->
pmBox.bgColor='$stylevar[thead_bgcolor]';
setInterval("Timer()", 500);
x=1;
function Timer()
{
set=1;
if (x==0 && set==1)
{
pmBox.bgColor='$stylevar[tcat_bgcolor]';
x=1;
set=0;
}
if (x==1 && set==1)
{
pmBox.bgColor='$stylevar[thead_bgcolor]';
x=0;
set=0;
}
}
-->
</script></if></if>

TheUGN.com
06-05-2006, 01:44 AM
For some weird reason i cannot find this script in my Navbar <td class="alt2" valign="top" nowrap="nowrap">

i searched and searched and searched and still i cannot find it.

What do i need to do

thefullmaza
01-01-2008, 04:40 PM
install this hack...

Loki12
10-03-2008, 02:17 PM
This is my fav PM notification hack ... can anyone perhaps make this work for 3.7?

I just tried to do this on the navbar template but can't seem to get it to work.

Medina
12-30-2008, 06:36 PM
Is it possible to create a blink not only for the PM. But also for other notifications such as profile messages, social group messages etc. etc.

Medina
02-18-2009, 02:53 PM
Hello,

Is there anybody how can help me to work this with vb 3.8, please.

Thank you very much for helping.