Ver Mensaje Individual
  #3 (permalink)  
Antiguo 06/02/2007, 18:25
Avatar de FLECHA
FLECHA
 
Fecha de Ingreso: mayo-2003
Ubicación: Mi casa
Mensajes: 409
Antigüedad: 20 años, 10 meses
Puntos: 1
Re: Quitar borde de una imagen-enlace en IE

Aqui tienes una forma de quitarlo; Introduce este codigo en tu index.
Crea con el block de notas un archivo llamado flashobject e introducelo en el directorio raiz del servidor. Si todavia quieres hacerlo dimelo y te envio por correo el codigo que debes meter en el archivo flashobjet, ya que es un poco largo para ponertelo aqui, O DIRECTAMENTE TE ENVIO EL ARCHIVO.

SALUDOS


CODIGO PARA LA PÁGINA INDEX:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<script type="text/javascript" src="flashobject.js"></script>
<style type="text/css">

/* hide from ie on mac \*/
html {
height: 100%;
overflow: hidden;
}

#flashcontent {
height: 100%;
}
/* end hide */

body {
height: 100%;
margin: 0;
padding: 0;
background-color: #FFFFFF;
}

</style>
</head>
<body>
<div id="flashcontent" align="center">
</div>
<div align="center">
<script type="text/javascript">
// <![CDATA[

var fo = new FlashObject("indes-diez.swf", "diez", "100%", "100%", "8", "#FFFFFF");
fo.addVariable("flashVarText", "this is passed in via FlashVars for example only");
fo.addParam("scale", "noscale");
fo.write("flashcontent");

// ]]>
</script>

</div>

</body>
</html>