What kind of validation errors? Does the site still render correctly in all browsers? In my experience, Flash can be difficult to get to validate.
Yeah that’s what I’ve come to learn too. These are the type of validation errors I get:
Line 20, Column 30: required attribute “type” not specified
<script language=”javascript”> var disabled = false; var macff = true; </script>
The attribute given above is required for an element that you’ve used, but you have omitted it. For instance, in most HTML and XHTML document types the “type” attribute is required on the “script” element and the “alt” attribute is required for the “img” element.
Typical values for type are type=”text/css” for <style> and type=”text/javascript” for <script>.
That’s an easy one to fix. Is that all the errors?