The editor rewrites the flash code and deleteds the embed tags (which are needed for all MACs to see flash).
How do I fix this? Please give details step by step so I can fix this issue.
I was getting JS errors when using the flash button.
Any way adding the code manually with the editor I add this standard code for flash:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="606" height="366"> <param name="movie" value="/assets/uploaded_files/timeline_01.swf"> <param name="quality" value="high"> <embed src="/assets/uploaded_files/timeline_01.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="606" height="366"></embed> </object>
The editor rewrites it to: <object codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" height="366" width="606" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param value="/assets/uploaded_files/timeline_01.swf" name="movie" /> <param value="high" name="quality" /></object>
So the embed tags are gone. |
|
|