I have a swf file embedded in my html page. Right now it just loads on the page load. I was wondering how I stop that from starting automatically and how to put in a play pause ff and rewind buttons (if possible). Here is my code
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
WIDTH="640" HEIGHT="480 id="loginCallout" ALIGN="">
<PARAM NAME=movie VALUE="myFile.swf">
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=green >
<EMBED src="myFile.swf" quality=high bgcolor=#333399 WIDTH="640"
HEIGHT="480" NAME="myFile" ALIGN=""
TYPE="application/x-shockwave-flash"
PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED> </OBJECT>
Thanks