Connecting Tech Pros Worldwide Help | Site Map

Alternative to Embeds playing WAV in HTML ?

 
LinkBack Thread Tools Search this Thread
  #1  
Old July 23rd, 2005, 11:24 AM
Richard Brooks
Guest
 
Posts: n/a
Default Alternative to Embeds playing WAV in HTML ?

IE5.5

It's probably an oft repeated question but I have some code that used to
work but does not now.

This line in my Javascript code give an error now.

document.embeds[Math.floor(Math.random()*6)].play();

And the following are the six lines of WAV files that used to be played at
random when a timed event happened.

<embed src="ukatc32.wav" width="1" height="1" autostart="false"
hidden="true" />
<embed src="ukatc41.wav" width="1" height="1" autostart="false"
hidden="true" />
<embed src="ukatc42.wav" width="1" height="1" autostart="false"
hidden="true" />
<embed src="ukatc90.wav" width="1" height="1" autostart="false"
hidden="true" />
<embed src="ukatc92.wav" width="1" height="1" autostart="false"
hidden="true" />
<embed src="ukatc93.wav" width="1" height="1" autostart="false"
hidden="true" />

I've been looking for an alternative to 'embed' without the user having
download yet another plugin, so what is the alternative ?

Thanks,

Richard Brooks.



  #2  
Old July 23rd, 2005, 11:24 AM
Richard Cornford
Guest
 
Posts: n/a
Default Re: Alternative to Embeds playing WAV in HTML ?

Richard Brooks wrote:[color=blue]
> IE5.5
>
> It's probably an oft repeated question but I have some code
> that used to work but does not now.
>
> This line in my Javascript code give an error now.
>
> document.embeds[Math.floor(Math.random()*6)].play();[/color]
<snip>

if((document.embeds)&&
(document.embeds.length >= 5)){
var em = document.embeds[Math.floor(Math.random()*6)];
em.volume = -1;
em.play();
}

- Seems to work OK on IE 6.

Richard.


  #3  
Old July 23rd, 2005, 11:24 AM
Richard Brooks
Guest
 
Posts: n/a
Default Re: Alternative to Embeds playing WAV in HTML ?

Richard Cornford wrote:[color=blue]
> Richard Brooks wrote:[color=green]
>> IE5.5
>>
>> It's probably an oft repeated question but I have some code
>> that used to work but does not now.
>>
>> This line in my Javascript code give an error now.
>>
>> document.embeds[Math.floor(Math.random()*6)].play();
>> <snip>[/color]
>
> if((document.embeds)&&
> (document.embeds.length >= 5)){
> var em = document.embeds[Math.floor(Math.random()*6)];
> em.volume = -1;
> em.play();
> }
>
> - Seems to work OK on IE 6.
>
> Richard.[/color]

I hate those strange things that happen! All I did was to archive the stuff
to CDR then some months put it all back without changine version of IE and
set the read only archive bit of the archived files to off just in case then
it throws the error up only in that section.

Thanks for having a look, Richard,


Richard.


 

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Popular Articles

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over 220,989 network members.