Ok, using 1 and 0 instead of true and false works in booth browsers.
To get the video playing in IE you need to have an object right?
Another thing is that the code i use to embed the videos made the page look like shit in FF, but not in IE. A div with a br above it solved it.
The code i use:
<br>
<div>
<object classid=”CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95″ width=”320″ height=”256″ codebase=”https://www.microsoft.com/”>
<param name=”autostart” value=”0″></param>
<param name=”autoplay” value=”0″></param>
<param name=”clicktoplay” value=”1″></param>
<param name=”controller” value=”1″></param>
<param name=”pluginspage” value=”https://www.microsoft.com/”></param>
<param name=”target” value=”myself”></param>
<param name=”type” value=”application/x-oleobject”></param>
<param name=”src” value=”https://media1.break.com/dnet/media/content/skatmanrace.wmv”></param>
<embed src=”https://media1.break.com/dnet/media/content/skatmanrace.wmv” width=”320″ height=”256″ autostart=”0″ autoplay=”0″ controller=”1″ border=”0″ pluginspage=”https://www.microsoft.com/” target=”myself”></embed>
</object>
</div>
seem to work in both IE and FF…
Anything that is bad/wrong with this solution?