HTML & WEB-Design

Moderators: Jonathan
Number of threads: 1249
Number of posts: 3348

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
sound Posted by com123 on 4 Aug 2006 at 10:55 PM
hi

i know how to embed sound files and how to make them into background sound.

but what i want to know is how do i have the sound continue to play through out the site?

because what i noticed is when a viewer clicks on a different page on your site the sound starts to play from the beginning.
can anyone tell me how to have it continue to play as a viewer goes to other pages on your site?

any help is greatly appreciated.

Report
Re: sound Posted by zibadian on 4 Aug 2006 at 11:52 PM
: hi
:
: i know how to embed sound files and how to make them into background sound.
:
: but what i want to know is how do i have the sound continue to play through out the site?
:
: because what i noticed is when a viewer clicks on a different page on your site the sound starts to play from the beginning.
: can anyone tell me how to have it continue to play as a viewer goes to other pages on your site?
:
: any help is greatly appreciated.
:
:
Try embedding the sound in an invisible frame. That way if the user opens another page, the sound won't be reloaded.
Report
Re: sound Posted by com123 on 5 Aug 2006 at 7:30 PM
: : hi
: :
: : i know how to embed sound files and how to make them into background sound.
: :
: : but what i want to know is how do i have the sound continue to play through out the site?
: :
: : because what i noticed is when a viewer clicks on a different page on your site the sound starts to play from the beginning.
: : can anyone tell me how to have it continue to play as a viewer goes to other pages on your site?
: :
: : any help is greatly appreciated.
: :
: :
: Try embedding the sound in an invisible frame. That way if the user opens another page, the sound won't be reloaded.
:
I would like to stay away from frames, do you know any other way to do it. If not, thank you I appreciate the help.
Report
Re: sound Posted by CyGuy on 6 Aug 2006 at 11:16 PM
: : : hi
: : :
: : : i know how to embed sound files and how to make them into background sound.
: : :
: : : but what i want to know is how do i have the sound continue to play through out the site?
: : :
: : : because what i noticed is when a viewer clicks on a different page on your site the sound starts to play from the beginning.
: : : can anyone tell me how to have it continue to play as a viewer goes to other pages on your site?
: : :
: : : any help is greatly appreciated.
: : :
: : :
: : Try embedding the sound in an invisible frame. That way if the user opens another page, the sound won't be reloaded.
: :
: I would like to stay away from frames, do you know any other way to do it. If not, thank you I appreciate the help.
:
My first idea would be frames as well, however it is possible to make tha page change without reloading it... the AJAX method does not require XML. put the content in layers or DIV tags ... give them a name or id ... then use the innerHTML method to replace that code when the user clicks a link. Just make sure you dont't change the section with the media file
WHAT you;see_is_what=you.get;
-Russ aka DangeRuss

Report
Re: sound Posted by com123 on 7 Aug 2006 at 1:19 PM
: : : : hi
: : : :
: : : : i know how to embed sound files and how to make them into background sound.
: : : :
: : : : but what i want to know is how do i have the sound continue to play through out the site?
: : : :
: : : : because what i noticed is when a viewer clicks on a different page on your site the sound starts to play from the beginning.
: : : : can anyone tell me how to have it continue to play as a viewer goes to other pages on your site?
: : : :
: : : : any help is greatly appreciated.
: : : :
: : : :
: : : Try embedding the sound in an invisible frame. That way if the user opens another page, the sound won't be reloaded.
: : :
: : I would like to stay away from frames, do you know any other way to do it. If not, thank you I appreciate the help.
: :
: My first idea would be frames as well, however it is possible to make tha page change without reloading it... the AJAX method does not require XML. put the content in layers or DIV tags ... give them a name or id ... then use the innerHTML method to replace that code when the user clicks a link. Just make sure you dont't change the section with the media file
: WHAT you;see_is_what=you.get;
: -Russ aka DangeRuss
:
:
i think i understand what your saying. i hope i'm not asking to much but can you give me an example. if it is to much, i'll work with it and figure it out. thank you very much for the help. :)


Report
Re: sound Posted by CyGuy on 10 Aug 2006 at 4:49 PM
: : : : : hi
: : : : :
: : : : : i know how to embed sound files and how to make them into background sound.
: : : : :
: : : : : but what i want to know is how do i have the sound continue to play through out the site?
: : : : :
: : : : : because what i noticed is when a viewer clicks on a different page on your site the sound starts to play from the beginning.
: : : : : can anyone tell me how to have it continue to play as a viewer goes to other pages on your site?
: : : : :
: : : : : any help is greatly appreciated.
: : : : :
: : : : :
: : : : Try embedding the sound in an invisible frame. That way if the user opens another page, the sound won't be reloaded.
: : : :
: : : I would like to stay away from frames, do you know any other way to do it. If not, thank you I appreciate the help.
: : :
: : My first idea would be frames as well, however it is possible to make tha page change without reloading it... the AJAX method does not require XML. put the content in layers or DIV tags ... give them a name or id ... then use the innerHTML method to replace that code when the user clicks a link. Just make sure you dont't change the section with the media file
: : WHAT you;see_is_what=you.get;
: : -Russ aka DangeRuss
: :
: :
: i think i understand what your saying. i hope i'm not asking to much but can you give me an example. if it is to much, i'll work with it and figure it out. thank you very much for the help. :)
:
:
:
Here is the JScript I made:
function DisplayPost(value)				// the value is what is on the button
{
 displayIt += value;					// adds(concaterate) the string as buttons are pressed

 document.all.displayScreen.innerHTML = displayIt; 	// physically puts the string in the calculator display
}
Make sure your datatypes are string.
Report
Re: sound Posted by com123 on 12 Aug 2006 at 4:19 PM
: : : : : : hi
: : : : : :
: : : : : : i know how to embed sound files and how to make them into background sound.
: : : : : :
: : : : : : but what i want to know is how do i have the sound continue to play through out the site?
: : : : : :
: : : : : : because what i noticed is when a viewer clicks on a different page on your site the sound starts to play from the beginning.
: : : : : : can anyone tell me how to have it continue to play as a viewer goes to other pages on your site?
: : : : : :
: : : : : : any help is greatly appreciated.
: : : : : :
: : : : : :
: : : : : Try embedding the sound in an invisible frame. That way if the user opens another page, the sound won't be reloaded.
: : : : :
: : : : I would like to stay away from frames, do you know any other way to do it. If not, thank you I appreciate the help.
: : : :
: : : My first idea would be frames as well, however it is possible to make tha page change without reloading it... the AJAX method does not require XML. put the content in layers or DIV tags ... give them a name or id ... then use the innerHTML method to replace that code when the user clicks a link. Just make sure you dont't change the section with the media file
: : : WHAT you;see_is_what=you.get;
: : : -Russ aka DangeRuss
: : :
: : :
: : i think i understand what your saying. i hope i'm not asking to much but can you give me an example. if it is to much, i'll work with it and figure it out. thank you very much for the help. :)
: :
: :
: :
: Here is the JScript I made:
: function DisplayPost(value)				// the value is what is on the button
: {
:  displayIt += value;					// adds(concaterate) the string as buttons are pressed
: 
:  document.all.displayScreen.innerHTML = displayIt; 	// physically puts the string in the calculator display
: }
Make sure your datatypes are string.
:
thanks a lot i got it.



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.