When developing projects, Flex Eclipse gives warnings about the default index.html file generated by Flex Builder. The file is located in the “target” folder (or “generated artifacts.” Yes, I also use Maven). Can I remove or disable this warning?
The code that generates the warning is below, although I would definitely prefer not to modify the html - as I said, this is a template proposed by Adobe. Eclipse warns of an "Undefined attribute name (xxx)" for scroll in the body tag and most embed attributes.
There is no DOCTYPE declaration in the html file.
<html lang="en"> ... <body scroll="no"> ... <embed src="myswf.swf" quality="high" bgcolor="#869ca7" width="100%" height="100%" name="myswf-flex" align="middle" play="true" loop="false" quality="high" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer"> </embed> ...
source share