Embedding media through tinymce advanced - issues in IE: Revision

Last updated by eugene

Embedding media un your blog is easy with tinymce advanced. You can embed youtube videos real easy using the Insert/edit embedded media button.

The results look great in Firefox, Chrome, Safari... Not so much in IE6 or IE7. The videos appear broken. I figured out the reason this happens is because the object code generated by the application in order to display the video is:

<object classid="d27cdb6e-ae6d-11cf-96b8-444553540000" ...

Which renders fine in mozilla and webkit based browsers.

For it to work in IE this code should be:

<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" ...

Does anyone know WHERE in the application do I have to tweak the code for it to include the clsid in the classid?

Thanks!