April 4, 2001 - Embedding Flash Files
April 4, 2001 Embedding Flash Files Tips: April 2001
Yehuda Shiran, Ph.D.
|
BODY
section of your HTML
file. Right-click this link and save this SWF file to your hard drive. You are now ready to include the SWF file in your page. Use the FlashSound JavaScript API function of embedSWF()
. This is a method of the FlashSound()
object. If you define your FlashSound object as follows:
<HEAD>
<SCRIPT SRC="flashsound.js"></SCRIPT>
<SCRIPT>
var mySoundObj = new FlashSound();
</SCRIPT>
</HEAD>
here is how you embed the file interactivesound.swf
somewhere in the BODY
section of your HTML
file:
<SCRIPT>
mySoundObj.embedSWF("interactivesound.swf");
</SCRIPT>