May 30, 2001 - Playing a Flash Movie
May 30, 2001 Playing a Flash Movie Tips: May 2001
Yehuda Shiran, Ph.D.
|
One of the "tiny" details is embedding the Flash object. The JavaScript file flashmoviecheck.js
does exactly this, and other stuff. It also checks for Flash plug-ins, and minimum player version.
Play()
and Rewind()
methods. The Play()
method starts playing the track from beginning. The Rewind()
method returns the movie to its initial position and stops the playback. You need to invoke Play()
after Rewind()
, as Rewind()
does not play the movie from its beginning, just rewinds it. The following Flash movie is courtesy of Swift3D. Play around with the following two buttons. You need to click the Play()
method to start it going. Notice that when you click the Rewind
button, only the movie rewinds; The sound track continues to loop and is not affected by the Rewind()
method.
Here is the source code:
<SCRIPT LANGUAGE="JavaScript" SRC="flashmoviecheck.js"></SCRIPT>
<A href="javascript://" onclick="javascript:mySwf.Rewind(); return false">Rewind</A> |
<A href="javascript://" onclick="javascript:mySwf.Play(); return false">Play</A>
<SCRIPT LANGUAGE="JavaScript">
Flash_embedSWF("swift3d.swf");
var mySwf = window.document.sonify;
</SCRIPT>