spacer

Webref WebRef   Sitemap · Experts · Tools · Services · Newsletters · About i.com

home / experts / javascript / column81


Embedding Sound with Flash, Part I: The Basics

Developer News
News Flash: Adobe Has iPhone Workaround
Adobe's Flash 10.1 Goes Mobile (Minus iPhone)
A Salute to Visionary CEOs

Recipe for Sonifying Web Pages

You can control the Flash player with JavaScript. The Sonify organization promotes standards in using interactive audio for the Web, wireless, and consoles. They developed the FlashSound JavaScript API. This API (Application Program Interface) enables you to add simple interactive sound to your conventional HTML page, without relying upon any graphic presentation. It also hides browser dependencies from you. When dealing with sound players, the difference between the browsers is immense. Netscape uses plug-ins while Explorer relies on ActiveX control. Therefore, having this API is good news. The FlashSound JavaScript API (FJA) is an excellent way to ramp up on how to control Flash with JavaScript. When you add sound to your page, you actually sonify your page.

The FJA is implemented in flashsound.js. Right-click this link and save the script to your hard drive. Look inside the code and see how the API is defined. It sure does hide browser dependencies, so use it as much as you can.

In order to sonify your page, follow this recipe:

  • Make sure you have the Flash player. 96% of the surfing population already has it. Download
  • Include flashsound.js in the HEAD section:

    <HEAD>
      <SCRIPT SRC="flashsound.js"></SCRIPT>
    </HEAD>

  • Create a flashsound object in the HEAD section:

      <SCRIPT>
        var mySoundObj = new FlashSound();
      </SCRIPT>

  • Embed your swf file in the BODY section:

    <SCRIPT>
      mySoundObj.embedSWF("interactivesound.swf");
    </SCRIPT>

  • Create an anchor tag and set the onclick event handler to the TGotoAndPlay() method:

    mySoundObj.TGotoAndPlay("/beamscan", "start");
    mySoundObj.TGotoAndPlay("/beamscan", "stop");

Next: How to author sonified pages

http://www.internet.com

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Reprints, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs

webref The latest from WebReference.com Browse >
Building a Banking Application Home Page with OOP · Mixing Scripting Languages · Review: phpFox, a Social Networking CMS with all the Bells and Whistles
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Enterprise 2.0: Social Networking in the Cloud · BroadSoft Marketplace Hastens Pace of Telephony Innovation · Review: HTC Hero for Sprint


Produced by Yehuda Shiran and Tomer Shiran
All Rights Reserved. Legal Notices.
Created: April 9, 2001
Revised: April 9, 2001

URL: http://www.webreference.com/js/column81/4.html