Ver Mensaje Individual
  #7 (permalink)  
Antiguo 10/11/2010, 17:36
haywell
 
Fecha de Ingreso: noviembre-2010
Mensajes: 9
Antigüedad: 14 años, 2 meses
Puntos: 0
Respuesta: Ejecutar PHP desde Flash

Gracias por su ayuda, quizas no es la mejor solucion pero logre hacer lo que queria con el siguiente codigo, llevaba tres dias intentando hacerlo, jejeje:

<!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>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Abriendo Aplicacion... Espere por Favor...</title>
<script language="JavaScript">
<!--
function abreventana()
{
window.open('index1.php','sofadim','top=100, left=100, toolbar=no,location=no, status=no,menubar=no,scrollbars=yes, resizable=yes, width=850,height=480');
}

function cerrar(){
window.open('','_parent','');
window.close();
return false;
}
//-->
</script>
</head>

<body>
<script language="JavaScript">
cerrar();
abreventana();
</script>
</body>
</html>