I added different sounds to each web page but as soon as I add th.

J

JOEY

Hello - I successfully added different sounds to several web pages on my site
(via page properties on each page) but as soon as I added the dynamic web
template to each page the sounds disappear.I see that you can add a sound to
the page properties of the .dwt but I want a different sound for each
page!Thanks.
 
R

roger

Open the DWT in code view, mark the portion of background music with


<!-- #BeginEditable "backgroundmusic" -->
<bgsound src="music/promise2.midi" loop="-1">
<!-- #EndEditable -->

Then edit the specific page you want to change.
 
J

JOEY

When I have added inline frame what happens next (I tried copying music file
into it but that didn't work!)?Inline frames are not my favourite things as I
lost a huge document in one a while back-anyway that's a different
story.Thanks.
 
J

JOEY

I've never worked with html before but I did exactly what you said (I left
spaces etc - was this right?)but when I previewed it I was faced with a blank
page!Thanks.
 
R

roger

Sorry not very sure what your "left spaces" mean.

The purpose of my suggestion is just to manually make this property area as
a Editable Region -- that is all. After making this area as an "editable
region", after attaching this template to any page, we can change this
property for this specific page.

So i am not sure how you did it. can you list the steps you performed one by
one so that we can see which one has problem?
 
J

JOEY

Hi - firstly thanks very much for spending time on this -I've not worked with
html before so I have pasted below what I think is the region that you say I
should edit on the dwt

// -->
</script>
<bgsound src="../SOUNDS/" loop="-1">
<!--[if gte mso 9]>

Could you change it for me correctly? I know its a cheek to ask but it's
driving me crazy! I'm making a school website & want to make it
exciting!Thank you in advance. Joey
 
R

Ronx

Using Roger's post from 3 1/2 days ago:

// -->
</script>
<!-- #BeginEditable "backgroundmusic" -->
<bgsound src="../SOUNDS/noise.wav" loop="-1">
<!-- #EndEditable -->
<!--[if gte mso 9]>

--
Ron Symonds (Microsoft MVP - FrontPage)
Reply only to group - emails will be deleted unread.


JOEY said:
Hi - firstly thanks very much for spending time on this -I've not worked
with
html before so I have pasted below what I think is the region that you say
I
should edit on the dwt

// -->
</script>
<bgsound src="../SOUNDS/" loop="-1">
<!--[if gte mso 9]>

Could you change it for me correctly? I know its a cheek to ask but it's
driving me crazy! I'm making a school website & want to make it
exciting!Thank you in advance. Joey




roger said:
Sorry not very sure what your "left spaces" mean.

The purpose of my suggestion is just to manually make this property area
as
a Editable Region -- that is all. After making this area as an "editable
region", after attaching this template to any page, we can change this
property for this specific page.

So i am not sure how you did it. can you list the steps you performed one
by
one so that we can see which one has problem?
 
M

mike

open FrontPage in html then put this on bottom of page,
Put your sound file in the same folder on your site.


<BGSOUND SRC=sound/indycar.wav LOOP=0>

</body>

</html>
 
R

roger

Yes. Ronx gives the right answer.

we just need change it to:

// -->
</script>

<!-- #BeginEditable "backgroundmusic" -->
<bgsound src="../SOUNDS/noise.wav" loop="-1">
<!-- #EndEditable -->

<!--[if gte mso 9]>

After updating the dwt file and the attached pages,when you check the "page
property" of them, you will find the background music field changes to white
so that you can change the content. Of couse, the default sould file is the
one you specified in the DWT file.


Roger ^^



Ronx said:
Using Roger's post from 3 1/2 days ago:

// -->
</script>
<!-- #BeginEditable "backgroundmusic" -->
<bgsound src="../SOUNDS/noise.wav" loop="-1">
<!-- #EndEditable -->
<!--[if gte mso 9]>

--
Ron Symonds (Microsoft MVP - FrontPage)
Reply only to group - emails will be deleted unread.


JOEY said:
Hi - firstly thanks very much for spending time on this -I've not worked
with
html before so I have pasted below what I think is the region that you say
I
should edit on the dwt

// -->
</script>
<bgsound src="../SOUNDS/" loop="-1">
<!--[if gte mso 9]>

Could you change it for me correctly? I know its a cheek to ask but it's
driving me crazy! I'm making a school website & want to make it
exciting!Thank you in advance. Joey




roger said:
Sorry not very sure what your "left spaces" mean.

The purpose of my suggestion is just to manually make this property area
as
a Editable Region -- that is all. After making this area as an "editable
region", after attaching this template to any page, we can change this
property for this specific page.

So i am not sure how you did it. can you list the steps you performed one
by
one so that we can see which one has problem?

I've never worked with html before but I did exactly what you said (I
left
spaces etc - was this right?)but when I previewed it I was faced with a
blank
page!Thanks.

:

Open the DWT in code view, mark the portion of background music with


<!-- #BeginEditable "backgroundmusic" -->
<bgsound src="music/promise2.midi" loop="-1">
<!-- #EndEditable -->

Then edit the specific page you want to change.


Hello - I successfully added different sounds to several web pages
on
my
site
(via page properties on each page) but as soon as I added the
dynamic
web
template to each page the sounds disappear.I see that you can add a
sound
to
the page properties of the .dwt but I want a different sound for
each
page!Thanks.
 
S

Stefan B Rusynko

BGSOUND is only allowed in the HEAD section and not globally supported
Best to insert sounds (if you really must) as EMBED tags at the end of the html page (before </body>
<embed src="soundfile.mid" name="theNoise" id="theNoise" autostart="true" loop="true" width="0" height="0" hidden align="center">





| open FrontPage in html then put this on bottom of page,
| Put your sound file in the same folder on your site.
|
|
| <BGSOUND SRC=sound/indycar.wav LOOP=0>
|
| </body>
|
| </html>
|
|
|
| >-----Original Message-----
| >Hello - I successfully added different sounds to several
| web pages on my site
| >(via page properties on each page) but as soon as I added
| the dynamic web
| >template to each page the sounds disappear.I see that you
| can add a sound to
| >the page properties of the .dwt but I want a different
| sound for each
| >page!Thanks.
| >.
| >
 
J

JOEY

Thank you VERY much! I was just nervous about all this html business - but it
worked!Thanks again for your time!

roger said:
Yes. Ronx gives the right answer.

we just need change it to:

// -->
</script>

<!-- #BeginEditable "backgroundmusic" -->
<bgsound src="../SOUNDS/noise.wav" loop="-1">
<!-- #EndEditable -->

<!--[if gte mso 9]>

After updating the dwt file and the attached pages,when you check the "page
property" of them, you will find the background music field changes to white
so that you can change the content. Of couse, the default sould file is the
one you specified in the DWT file.


Roger ^^



Ronx said:
Using Roger's post from 3 1/2 days ago:

// -->
</script>
<!-- #BeginEditable "backgroundmusic" -->
<bgsound src="../SOUNDS/noise.wav" loop="-1">
<!-- #EndEditable -->
<!--[if gte mso 9]>

--
Ron Symonds (Microsoft MVP - FrontPage)
Reply only to group - emails will be deleted unread.


JOEY said:
Hi - firstly thanks very much for spending time on this -I've not worked
with
html before so I have pasted below what I think is the region that you say
I
should edit on the dwt

// -->
</script>
<bgsound src="../SOUNDS/" loop="-1">
<!--[if gte mso 9]>

Could you change it for me correctly? I know its a cheek to ask but it's
driving me crazy! I'm making a school website & want to make it
exciting!Thank you in advance. Joey




:

Sorry not very sure what your "left spaces" mean.

The purpose of my suggestion is just to manually make this property area
as
a Editable Region -- that is all. After making this area as an "editable
region", after attaching this template to any page, we can change this
property for this specific page.

So i am not sure how you did it. can you list the steps you performed one
by
one so that we can see which one has problem?

I've never worked with html before but I did exactly what you said (I
left
spaces etc - was this right?)but when I previewed it I was faced with a
blank
page!Thanks.

:

Open the DWT in code view, mark the portion of background music with


<!-- #BeginEditable "backgroundmusic" -->
<bgsound src="music/promise2.midi" loop="-1">
<!-- #EndEditable -->

Then edit the specific page you want to change.


Hello - I successfully added different sounds to several web pages
on
my
site
(via page properties on each page) but as soon as I added the
dynamic
web
template to each page the sounds disappear.I see that you can add a
sound
to
the page properties of the .dwt but I want a different sound for
each
page!Thanks.
 
Top