Log in

View Full Version : What's wrong with this flashing code?


MyvB8MyIPS
04-18-2005, 01:58 AM
We're trying to make a flashing PM indicator. The reason why we can't use one of the others already out is because our style already uses a gif image in the background for the PM section. So what we're trying to do is to make it flash when a new PM arrives. The second image is called pmalert.gif. Ypu can ignore the mem_left.gif and mem_right.gif images. Here is the code that we've made so far:

<!-- nav buttons bar -->
<div align="center">
<table width="30%" cellpadding="0" cellspacing="0" align="center"><tr>
<td><img src="$stylevar[imgdir_misc]/mem_left.gif" alt="" border="0" /></td>
<td width="50%" class="membersbar">
</td>
<td width="40%" align="center" class="membersbar">
<if condition="$show['pmstats']"> <phrase 1="$vbphrase[unread_x_nav_compiled]" 2="$vbphrase[total_x_nav_compiled]" 3="$session[sessionurl]">$vbphrase[private_messages_nav]</phrase></if>
<else />
<if condition="$bbuserinfo['pmunread']">
<img src="$stylevar[imgdir_misc]/pmalert.gif" alt="" border="0" />
</if>
</td>
<td><img src="$stylevar[imgdir_misc]/mem_right.gif" alt="" border="0" /></td>
</tr></table>
</div>
<!-- / nav buttons bar -->

The problem is that the "else" tag isn't working, and when a PM arrives it tries to display TWO images there at the same time :( Is there a way that we can fix this so that it switches to the other image wien a PM arrives?

Thanks.

Jolten
04-18-2005, 02:53 AM
<if condition="">

stuff

<else />

stuff

</if>

MyvB8MyIPS
04-18-2005, 03:37 AM
Are you saying to make it like this?

<if condition="$show['pmstats']"> <phrase 1="$vbphrase[unread_x_nav_compiled]" 2="$vbphrase[total_x_nav_compiled]" 3="$session[sessionurl]">$vbphrase[private_messages_nav]</phrase></if>
<else />
<img src="$stylevar/pmalert.gif" alt="" border="0" />
</if>


Because we're getting an error when we try that:

[i]Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or `T_NUM_STRING' in /home/virtual/site140/fst/var/www/html/vbforum/includes/adminfunctions_template.php(3096) : eval()'d code on line 124

:confused:

Jolten
04-18-2005, 11:11 PM
You've simply got the tags wrong.

You have:

<if condition=="">
stuff
</if>
<else />
<if condition="">
</if>

What you need is:
<if condition="">
stuff
<else />
<if condition="">
stuff
</if>
</if>

The basic structure is <if> blah <else /> blah </if> If youwant to embed an conditional with in the else statement then it needs to be self contained so <if> blah <else /> <if>blah</if> </if> but the wrapping conditional needs to still maintain the same structure.


<!-- nav buttons bar -->
<div align="center">
<table width="30%" cellpadding="0" cellspacing="0" align="center"><tr>
<td><img src="$stylevar[imgdir_misc]/mem_left.gif" alt="" border="0" /></td>
<td width="50%" class="membersbar">
</td>
<td width="40%" align="center" class="membersbar">
<if condition="$show['pmstats']"> <phrase 1="$vbphrase[unread_x_nav_compiled]" 2="$vbphrase[total_x_nav_compiled]" 3="$session[sessionurl]">$vbphrase[private_messages_nav]</phrase>
<else />
<if condition="$bbuserinfo['pmunread']">
<img src="$stylevar[imgdir_misc]/pmalert.gif" alt="" border="0" />
</if>
</if>
</td>
<td><img src="$stylevar[imgdir_misc]/mem_right.gif" alt="" border="0" /></td>
</tr></table>
</div>
<!-- / nav buttons bar -->