FLASH W3c compliance

  •  08-05-2009, 12:12 PM

    FLASH W3c compliance

    The htm editor uses the PARAM tag etc to insert flash but this does not validate on the W3c Validator
    The code the editor adds is :
     
    <object xcodebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" height="200" width="200" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" >
    <param name="Movie" value="/site-flash/random-quotes/xml-random-quotes-slideshow.swf" />
    <param name="Quality" value="high"/>
    <param name="wmode" value="transparent"/><embed src="http://www.cutesoft.net/site-flash/random-quotes/xml-random-quotes-slideshow.swf" width="200" height="200" quality="high" wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" ></embed>
    </object>
     
    To be compliant it should read: 
     
    <object type="application/x-shockwave-flash" data="site-flash/random-quotes/xml-random-quotes-slideshow.swf" width="328" height="242">
    <param name="movie" value="site-flash/random-quotes/xml-random-quotes-slideshow.swf" /></object> 
     
    How do i change how the html editor inserts the flash code.   I am using xhtml transitional 

    Ian Phillips
    Development and Project Management
View Complete Thread