PDA

View Full Version : How do I incorporate a flash header that turns to an image on all pages except home


kobescoresagain
12-22-2006, 04:45 PM
And displays as an image if no flash is found?

I have found this.

<!-- LOGO -->
<center>
<object width="936" height="181">
<param name="movie" value="http://www.fitnessandbeyond.net/Forums/images/misc/fitness_flashv3.swf ">
<embed src="http://www.fitnessandbeyond.net/Forums/images/misc/fitness_flashv3.swf " width="936" height="181">
</embed>
</object>
</center>
<!-- END LOGO -->

in another post which would allow me to do a header, but I would like to make it so the header shows only once on the homepage. All other pages would be fixed. Also I would like to have it only show to users with flash installed for obvious reasons.

Thanks for your help.

amnesia623
01-23-2007, 04:02 AM
I'd be curious about this also

Aken
01-24-2007, 09:32 PM
<if condition="THIS_SCRIPT == 'index'">

<!-- LOGO -->
<center>
<object width="936" height="181">
<param name="movie" value="http://www.fitnessandbeyond.net/Forums/images/misc/fitness_flashv3.swf ">
<embed src="http://www.fitnessandbeyond.net/Forums/images/misc/fitness_flashv3.swf " width="936" height="181">
</embed>
</object>
</center>
<!-- END LOGO -->

<else />

<a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a>

</if>


Replace any necessary variables, but the IF / ELSE stuff is what you need to pull this off.