PDA

View Full Version : Attatching sound files to pages..



Bearcat
04-11-2007, 10:48 AM
Greetings gents... I am trying to figure out how to add sound files to pages using the wizard. I am not adept at HTML at all... so I use the wizard. I have been hemming and hawing with this for a while now.. and so I figured Id better get off my duff and get to it before my time runs out and O wind up tossing more $$ down the drain... With the previous wizard used for my old site there was a way within the wizard to add sound files but I don't see it here in the help. I know it must be possible.. I just don't know how.

:o

intrillium
04-11-2007, 03:34 PM
While I don't advise you force a user to listen to anything when they visit your site, perhaps this may help (please keep in mind that I have never used the Wizard, so this might be in vain...)


If there is a way to flip into HTML mode in the Wizard, you could simply put in a snippet of code that looks something like this:


<EMBED SRC="sound.wav" AUTOSTART="true" HIDDEN="true" LOOP="true" />

where SRC="sound.wav" is the location of your audio file,
AUTOSTART="true" is telling the browser to start playing the sound automatically (change to "false" if you don't want this),
HIDDEN="true" is to hide the controls for the player (change to "false" if you want to show them),
and LOOP="true" is to loop the audio over and over and over again until the person visiting your site pokes their eyeballs out with a dull pencil.