[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Sound loop.
Andy Augustine wrote:
>
> I fear people will actually use this (it could get worse than scrolling text in status bars), but you asked for it. Try using the
setTimeout('functionSound()',
>
> Andy Augustine
> aug@ix.netcom.com
>
>> to play a sound in js you'd use location="<anysound>.au".
>> But what if you'd want to loop the sound?
>> Is there a way to loop the sound using js.
>>
>> anthony
Andy,
I've tried that in a test page. Results: I Recommend NEVER try this:
<HTML>
<HEAD>
</HEAD>
<BODY>
<CENTER>
<script>
var timerID=NULL;
document.write (navigator.appCodeName + "<br>");
document.write (navigator.appName + "<br>");
document.write (navigator.appVersion + "<br>");
document.write (navigator.userAgent + "<br>");
function loopsound () {
location="jungle1.au";
timerID=setTimeout('loopsound()',5000)
}
loopsound()
</script>
</CENTER>
</BODY>
</HTML>
It will annoy the heck out of everyone. Well what I want to do is play
a looping audio file seamlessly. Well I guess Shockwave or Java will
probably play a looping audio file better than JS. Unless there is a
Plug-in that can do this. What's better is if it can do this using
continuous streaming.
anthony
--
<=========================================================>
Anthony Nguyen | anthonyn@skunkink.com
Lead Programmer/WebMaster | ph: 310 826-8388
Skunk Works Multimedia | fax: 310 826-5288
| http://www.skunkink.com
<=========================================================>
--------------------------------------------------------------------
This message came from the mailing list javascript. For help using the
mailing list software, please send a message to 'majordomo@obscure.org'
with the message body 'help'. To unsubscribe, send a message to
'majordomo@obscure.org' with the message body 'unsubscribe javascript'.