PC Review Forums Newsgroups Microsoft Word Microsoft Frontpage how do I set up contiuous sound in frontpage website

Reply

how do I set up contiuous sound in frontpage website

 
Thread Tools Rate Thread
Old 31-03-2006, 02:24 AM   #1
=?Utf-8?B?QWxleCBBYmVsYQ==?=
Guest
 
Posts: n/a
Default how do I set up contiuous sound in frontpage website


My sound clip inserted in various pages restarts everytime a different page
is opened.

How can I play the same sound clip continuously thru all pages without
restarting?
  Reply With Quote
Old 31-03-2006, 02:53 AM   #2
Trevor L.
Guest
 
Posts: n/a
Default Re: how do I set up contiuous sound in frontpage website

Alex Abela wrote:
> My sound clip inserted in various pages restarts everytime a
> different page is opened.
>
> How can I play the same sound clip continuously thru all pages without
> restarting?


I noticed a similar query a while ago. I should have saved my reply and
reposted it. Anyway, I'll try to replicate what I posted.

The trick is to place the sound clip in a frame which is almost invisible,
and put the rest of the site in the second frame.
Any links back to the home page should link instead to the second frame.

Home Page
<frameset rows="1,*">
<noframes>
<body>
To view this document, you need a frames-compatible browser
such as Netscape 2.0 and above.
</body>
</noframes>

<frame src="sound.html" />
<frame src="index_new.html" name="index_new" />
</frameset>

sound.html contains the code to open the audio file.
<div style="display:none">
<!-- code to open the audio file. -->
</div>
The style will ensure it is invisible.

index_new.html is your pseudo home page which you link others back to.

You may be able to use
<frameset rows="0,*">
but I don't know

--
Cheers,
Trevor L.
Website: http://tandcl.homemail.com.au


  Reply With Quote
Reply



Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off