El elemento <param>
El elemento <param> se usa para establecer valores de propiedad
a los elementos <object>,
<embed> o
<applet>.
El elemento no requiere un comando de cierre. El contenido del elemento no es renderizado.
Ejemplo:
<html>
<head>
<title>El Elemento param</title>
</head>
<body>
<object
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,79,0"
id="StreamSound"
width="124"
height="64">
<!-- below we set the param elements -->
<param
name="movie"
value="http://www.speakcomputers.com/htmltry/resource/Example.swf">
<param
name="bgcolor" value="#FFFFE5">
<param
name="quality"
value="high">
<param
name="base"
value="http://www.speakcomputers.com/htmltry/resource/">
<param
name="allowscriptaccess"
value="samedomain">
<!-- end param elements -->
<embed
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer"
name="StreamSound"
width="124"
height="64"
src="Example.swf"
bgcolor="#FFFFE5"
quality="high"
base="http://www.speakcomputers.com/htmltry/resource/"
swliveconnect="true"
allowscriptaccess="samedomain">
<noembed>
</noembed>
</embed>
</object>
</body>
</html>
|