[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: JavaScript sound
At 04:08 PM 2/13/96 -0500, you wrote:
>Does anyone know of a way to play sound files with JavaScipt?
A low-tech method (works best with the file is in .au format or something
else the NPLAYER app can play:
location = name_of_my_file.au;
For example, if you want to play a sound file called "train.au," do this:
location = "train.au";
If you want background sound or something more fancy a plug-in is probably
the better approach. I guess this is one area where Netscape lags a little
behind Internet Explorer.
-- Gordon