May 17, 2001 - Example for Sonifying a Page | WebReference

May 17, 2001 - Example for Sonifying a Page

Yehuda Shiran May 17, 2001
Example for Sonifying a Page
Tips: May 2001

Yehuda Shiran, Ph.D.
Doc JavaScript

In some of your applications you may need to use Flash Audio and JavaScript directly, without any prepackaged APIs such as FlashSound JavaScript API. You will enjoy more features, methods, and properties, but you'll have to take care of all the tiny details that are taken for granted when using FlashSound API.

The following links demonstrate the embedding of animalsounds.swf in this tip. Try these links and refresh your childhood memories:

| Dog Barking | Frog Ribbet | Horse Whinny | Cat meow |

Here is the source code:

<HTML>
<HEAD>
<SCRIPT LANGUAGE="JavaScript" SRC="flashsoundcheck.js"></SCRIPT>
</HEAD>
<BODY>
<A href="javascript://" onclick="sonified_flash(10); return false">Dog Barking</a> |
<A href="javascript://" onclick="sonified_flash(30); return false">Frog Ribbet</a> |
<A href="javascript://" onclick="sonified_flash(60); return false">Horse Whinny</a> |
<A href="javascript://" onclick="sonified_flash(80); return false">Cat meow</a> |
<SCRIPT LANGUAGE="JavaScript">
  Flash_embedSWF("animalsounds.swf");
</SCRIPT>
</BODY>
</HTML>