We have a flash movie file that is in our webpage. When our webpage loads, the flash file starts playing automatically, We've been trying to figure out how to load the page with the flash file NOT playing. According to macromedia's site, we just need to pass the parameter play = false. Here's how we currently have our flash object defined:
Code: Select all
<OBJECT ID="map" CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
CODEBASE="http://active.macromedia.com/flash2/cabs/swflash.cab#version=2,0,0,0"
WIDTH="275" HEIGHT="474">
<PARAM NAME="movie" VALUE="image/punk_static.swf">
<PARAM NAME="PLAY" VALUE="false">
<PARAM NAME="quality" VALUE="best">
<PARAM NAME="swLiveConnect" VALUE="true">
<PARAM NAME="loop" VALUE="false">
<EMBED NAME="slav" SRC="images/punk_static.swf" swLiveConnect="true" WIDTH="275" HEIGHT="474" mayscript="mayscript" quality=
"best" play="false" LOOP="false" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlas
h2"> </EMBED>
</OBJECT>Anyone know what we are doing wrong? How do we make this thing NOT play by default when the page loads!?
Help!
Paul