May 24, 2001 - Playing a SWF ("swiff")
May 24, 2001 Playing a SWF ("swiff") Tips: May 2001
Yehuda Shiran, Ph.D.
|
One of the "tiny" details is embedding the sound object. The JavaScript file included in this tip, flashsoundcheck.js
, does exactly this, and other stuff for Internet Explorer browsers. It also checks for Flash plug-ins, and minimum player version.
Play()
Flash method. It starts playing the track from frame 0. Notice the few seconds of silence at the beginning. The first sound bit is recorded at the 10th frame (dog barking).Here is the source code:
<SCRIPT LANGUAGE="JavaScript" SRC="flashsoundcheck.js"></SCRIPT> <A href="javascript://" onclick="javascript:mySwf.Play(); return false">Play</a></FONT><P> <SCRIPT LANGUAGE="JavaScript"> Flash_embedSWF("animalsounds.swf"); var mySwf = window.document.sonify; </SCRIPT>