On 05/07/2007 12:20, Ian Piper wrote:
> On 5 Jul 2007, at 11:34 am, Jason Crosse wrote:
> 
>> On 05/07/2007 11:22, Ian Piper wrote:
>>> I haven't found any useful way to
>>> get a flash logo like this one to validate on a web page.
>>>
>>> Thanks,
>>>
>>>
>>> Ian.
>>> -- 
>>
>> You could try fixing the flash embedding bode so that
>> 1. The element and attibute names are all in lower case
>> 2. The <param> elements are closed: <param attr="val" />
>>
>> Then run it through again. It won't fix everything, but xhtml must
>> all be in lower case.
>> -- 
> 
> Good idea. That takes the number of errors down to 22. Still 22 too many
> of course, but heading the right way.
> 
> Thanks,
> 
> 
> Ian.
> -- 
> 

I see that you have only made some of the elements and attibutes lower case, 
and only closed some of the empty elements.

Forgive me if you're in teh process of doing it right now.

Anyway, here's the code I see on your page:

<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" 
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0";
width="105" height="95" id="logo anim 20060425 cropped2" align="">
<param name="movie" value="images/logo_animated_20060425.swf" />
<param name="loop" value="false">
<param name="quality" value="high" />
<param name="wmode" value="transparent">
<param name="bgcolor" value="#FFFFFF" />
<EMBED src="images/logo_animated_20060425.swf" loop="false" quality="high" 
wmode="transparent" bgcolor=#FFFFFF  width="105" height="95" name="logo anim 
20060425 cropped2" align=""
 type="application/x-shockwave-flash" 
PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer";></EMBED>
</OBJECT>

Here is my replacement with all elements and attributes made lower case, and 
all empty elements closed:

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" 
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0";
width="105" height="95" id="logo anim 20060425 cropped2" align="">
<param name="movie" value="images/logo_animated_20060425.swf" />
<param name="loop" value="false" />
<param name="quality" value="high" />
<param name="wmode" value="transparent" />
<param name="bgcolor" value="#FFFFFF" />
<embed src="images/logo_animated_20060425.swf" loop="false" quality="high" 
wmode="transparent" bgcolor=#FFFFFF  width="105" height="95" name="logo anim 
20060425 cropped2" align=""
 type="application/x-shockwave-flash" 
pluginspage="http://www.macromedia.com/go/getflashplayer";></embed>
</object>

That should eliminate some more errors.

-- 
http://antanova.blogspot.com
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to