Hi,
When we add a flash file using the flash button, it does not create a valid xhtml.
Example with my website, the created code is :
<embed height="518" width="691" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" src="/sites/mindenice.fr/files/articles/la.redaction/2008/2008-10/cellopack.swf" play="true" loop="true" menu="true"></embed>
This is not valid xhtml, the embed tag is not supported in xhtml strict.
Using the Object tag would be better, like this :
<object type="application/x-shockwave-flash" data="/sites/mindenice.fr/files/articles/la.redaction/2008/2008-10/cellopack.swf" width="691" height="518"> <param name="movie" value="/sites/mindenice.fr/files/articles/la.redaction/2008/2008-10/cellopack.swf" /> </object>
Is there a way to setup fck to do a better xhtml code or not?
Thanks