I have generated code to embed an .swf video file in my web page but the video just plays automatically when the web page is loaded and there are no controls present, even with the code (<PARAM NAME=controller VALUE=true>)
How do I:
a) stop it playing automatically
display the controller
Thanks
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="720" HEIGHT="536" id="MyVideo" ALIGN="">
<PARAM NAME=movie VALUE="MyVideo.swf">
<PARAM NAME=quality VALUE=high>
<PARAM NAME=controller VALUE=true>
<EMBED src="MyVideo.swf" quality=high
WIDTH="720" HEIGHT="536" NAME="MyVideo" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED> </OBJECT>