How do I change the music?

G

Guest

I'm starting a new job where I have to maintain a website for the company.
Most of it is very self-explanatory and I am grateful for that; but the
website already has some music files on it that play automatically when you
open the site. I would like to know how one can change the music to another
selection of music, or how to make it stop playing the music altogether?

If anyone can help me on this I would be truly thankful.
 
S

Steve Easton

In design view, right click any page that has music and then select "Page properties."
You will be able to change / remove the background music.

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
S

Stefan B Rusynko

To turn off the sound

1) Make sure the sound files are inserted using a Named Embed tag (usually just before the </body> tag)

<embed src="soundfile.mid" name="theNoise" id="theNoise" autostart="true" loop="true" width="0" height="0" hidden align="center">

2) Insert a link to turn the sound off

<a href="javascript:killNoise();">No Sound (or insert an image here)</a>

3) Insert this one of these scripts in the HEAD section of each page

FOR FRAMED PAGES USE:
<script language="JavaScript" language="JavaScript"><!-- Hide It:
function killNoise() {
// The Embedded sound is in a framed page (frame is named "TheFrame")
parent.TheFrame.embeds['theNoise'].stop(); return false;
}
// ShowIt: --></script>

FOR UNFRAMED PAGES USE:
<script language="JavaScript" language="JavaScript"><!-- Hide It:
function killNoise() {
// The Embedded sound is in an Unframed Page
document.theNoise.stop();return true;
}
// ShowIt: --></script>



--




| I'm starting a new job where I have to maintain a website for the company.
| Most of it is very self-explanatory and I am grateful for that; but the
| website already has some music files on it that play automatically when you
| open the site. I would like to know how one can change the music to another
| selection of music, or how to make it stop playing the music altogether?
|
| If anyone can help me on this I would be truly thankful.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top