amigos,
El problemas radica en en codigo que uso para mostrar unas imagenes en en iframe la cuales rotan de manera horizantal.
con el siguiente codigo en IE me funciona de las mil maravillas pero en Firefox no me trae las imagenes.
les comento que las imagnes a las cual hago referencia esta en la una maquina en la red por lo cual las mapeo con el numero de cedula que es el nombre con el cual son guardas las imagenes.
le dejo aqui el codigo que utilizo a ver si me pueden ayudar.
<!-- iframe q inserto en una tabla html -->
<iframe scrolling="si" src="/Intra_UTILIDAD/UTIL_UIS_cumpleservicio.php" frameborder="0" height="200" width="200"> </iframe>
UTIL_UIS_cumpleservicio.php
//conexion a la BD
include("GEN_Conectarse.ini.php");
Conectarse();
$cumple= "BUS_cumpleservicio";
$datos =mssql_query($cumple);
$texto = "";
// inicio de bucle para la foto
$texto = $texto."<table width=\"2000\" border=\"0\" cellspacing=\"1\" cellpadding=\"1\" >";
$texto = $texto. "<tr>";
while ($row = mssql_fetch_array($datos))
{
$texto = $texto. "<td align=\"center\" width=\"182\" >";
$texto = $texto. "<img width=\"70\" height=\"70\" alt=\"FOTO\" title=\"FOTO\" src=\"file://///2000.1000.250.22/Control Maestro/FOTO/" . $row['cedula'] . ".JPG\" border=\"1\">";
// $texto = $texto. "<img width=\"70\" height=\"70\" src=\"../FOTOS_CUMPLE/" . $row['cedula'] . ".JPG\" border=\"1\">";
$texto = $texto. "</td>";
}
$texto = $texto. "</tr>";
// inicio de bucle para el nombre
$texto = $texto. "<tr>";
$datos =mssql_query($cumple);
while ($row = mssql_fetch_array($datos))
{
$texto = $texto. "<td align=\"center\" width=\"182\" >";
$texto = $texto. "<span class=\"Estilo2\">".$row['empleado']."</span>";
$texto = $texto. "</td>";
}
$texto = $texto. "</tr>";
// inicio de bucle para la fecha
$texto = $texto. "<tr>";
$datos =mssql_query($cumple);
while ($row = mssql_fetch_array($datos))
{
$texto = $texto. "<td align=\"center\" bordercolor=\"#0033CC\" >";
$texto = $texto. "<span class=\"Estilo2\">" .$row['fecha_ingreso']. " años: ". $row['cantidad']. "</span>";
$texto = $texto. "</td>";
}
// cierre de la tabla
$texto = $texto. "</tr>";
$texto = $texto."</table>";
// se pasa el valor de la tabla a una variable en javascript
echo "<script> texto = ' ".$texto."' </script>";
codigo javascrip para mover las fotos:
if (document.all){
document.write('<marquee id="ieslider" behavior= "scroll"s crollAmount=2 style=" width:150">'+texto+'</marquee>')
ieslider.onmouseover=new Function("ieslider.scrollAmount=0")
ieslider.onmouseout=new Function("if (document.readyState=='complete') ieslider.scrollAmount=2")
}
function regenerate(){
window.location.reload()
}
function regenerate2()
{
if (document.all)
ieslider.scrollAmount=slidespeed
}
ojala me puedan ayudar a conseguir una solucion a este problema ya que he googleado mucho buscando la posible solucion y todavia no la encuentro