A client of ours has been having trouble embedding video using the WYSIWYG editor. The they can not turn off the autostart even when the checkbox is unchecked.
I went through and got the video to embed correctly by manually inserting a different embed code (not the one provide by the wysiwyg) using the edit code screen. The problem is that when they go to publish the page from the page settings dropdown the video embed code gets replaced with the wysiwyg's video embed code removing the code necessary to make the video behave correctly.
This is the code that displays the video correctly with no "autostart"
<OBJECT ID="MediaPlayer" WIDTH="400" HEIGHT="400" CLASSID="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
STANDBY="Loading Windows Media Player components..." TYPE="application/x-oleobject">
<PARAM NAME="FileName" VALUE="http://www.weintegrate-everything.com/clients/richmond/autobahn.wmv">
<PARAM name="autostart" VALUE="false">
<PARAM name="ShowControls" VALUE="true">
<param name="ShowStatusBar" value="false">
<PARAM name="ShowDisplay" VALUE="false">
<EMBED TYPE="application/x-mplayer2" SRC="http://www.weintegrate-everything.com/clients/richmond/autobahn.wmv" NAME="MediaPlayer"
WIDTH="400" HEIGHT="400" ShowControls="1" ShowStatusBar="0" ShowDisplay="0" autostart="0"> </EMBED>
</OBJECT>
This is the code that it gets replaced with causing the video to "autostart"
<object width="400" height="400" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" type="application/x-oleobject">
<param name="FileName" value="http://www.weintegrate-everything.com/clients/richmond/autobahn.wmv" />
<param name="autostart" value="false" />
<param name="ShowControls" value="true" />
<param name="ShowStatusBar" value="false" />
<param name="ShowDisplay" value="false" /> <embed src="http://www.weintegrate-everything.com/clients/richmond/autobahn.wmv" type="application/x-mplayer2" width="400" height="400"></embed>
</object>
The client kind of needs to be able to embed there own video. We can not continue to manually insert the code for them.
Thanks