Hello again,
I am once again at a spot that I cannot seem to figure out.
The site I'm working on is actually replacing a current site. The page in question is http://www.grimco.com/equipment2.html
Now that all seems to view as planned, but when I validate that page I get;
File - !equipment2.html
Line - 216
Description - The tag name:"embed" Not found in the currently active versions.[XHTML 1.0 transitional]
From doing some checking (googling) I've realized that the <embed> tag is not recognized in W3 standards for XHTML.
The question I have is;
Is there a way to get my flash swf files placed and allow the pages to validate. I've seen some work arounds online but they seem to have different effects depending on what browser the viewer is using.
Thank you
Here is the code where my flash object is embeded:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="700" height="500" title="Equipment Offered">
<param name="movie" value="equipment_scroll.swf" />
<param name="quality" value="high" />
<param name="wmode" value="transparent" />
<embed src="equipment_scroll.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" wmode="transparent" width="700" height="500"></embed>
</object>
