alchemy wrote:
> Hi,
> I'm trying to get my site to validate (rootsorganic.co.uk), but am
> having trouble with the banner. I've looked at help on the net, but I
> can't find anything for dealing with flash hosted somewhere else. Any
> ideas??
Dealing with Flash movies hosted elsewhere is no different from hosting
it on the local server, with the only exceptions being that the remote
server must allow it, as well as the URL you provide for the Flash
movie.
The reason the validation of your site fails, is that the <embed> tag
isn't part of valid XHTML. You should rather use the <object> tag for
this purpose, like this:
<object cl***id="clsid

27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://active.macromedia.com/flash5/cabs/swflash.cab#version=5
,0,0,0
" width="800" height="83" codetype="application/x-shockwave-flash">
<param name="movie"
value="http://img167.imageshack.us/img167/1838/f2577959yj8.swf" />
<param name="allowscriptaccess" value="never" />
<param name="scale" value="exactfit" />
<param name="play" value="true" />
<param name="loop" value="true" />
<param name="quality" value="high" />
</object>
Exchanging the whole <embed> tag with the above code snippet leaves you
with only 2 validation errors and one character encoding error, you
might be able to figure out these by yourself.
--
Kim André Akerø
-
EMAIL REMOVED
(remove NOSPAM to contact me directly)