PDA

View Full Version : Add things to the footer!!!


daddygrim
03-27-2007, 01:21 AM
I want to add a introduction to my site for all to hear when they log on..that will play soon as they get to my site...where will i add the code? and does anybody have the code for playing mp3?

bigdog829
03-27-2007, 02:13 AM
Just add this to the bottom of your footer :

<EMBED SRC="filename" HIDDEN="TRUE" AUTOSTART="TRUE">

and if you want it to play only once :

<EMBED SRC="filename" HIDDEN="TRUE" AUTOSTART="TRUE" LOOP="FALSE">

I would also add a <if> conditional so only guests hear it cause its gonna play everytime the page is refreshed.

<if condition="is_member_of($bbuserinfo, USERGROUP1,USERGROUP2)"><EMBED SRC="filename" HIDDEN="TRUE" AUTOSTART="TRUE" LOOP="FALSE"></if>



replacing USERGROUP1,USERGROUP2 with whatever usergroups you would like to hear the file.

Hope this helps :up: