Ver Mensaje Individual
  #4 (permalink)  
Antiguo 11/10/2006, 11:20
Remsankar
 
Fecha de Ingreso: octubre-2003
Ubicación: Cerca de una wifi o 3G
Mensajes: 328
Antigüedad: 21 años, 2 meses
Puntos: 4
Luego de darme cuenta que no es posible encontrar ese parametro por las buenas en iexplorer, por que el valor no existe.

opte por hacerlo de esta manera

Código HTML:
<html>
<head>
<title></title>
<script language="JavaScript">

var ieDiffWidth;
var ieDiffHeight;

function init() {

  var w, h, offW, offH, diffW, diffH;
  var fixedW = 800;
  var fixedH = 600;

  if (document.all) {
    offW = document.body.offsetWidth;
    offH = document.body.offsetHeight;
    window.resizeTo(fixedW, fixedH);
    diffW = document.body.offsetWidth  - offW;
    diffH = document.body.offsetHeight - offH;
    w = fixedW - diffW;
    h = fixedH - diffH;
    ieDiffWidth  = w - offW;
    ieDiffHeight = h - offH;
    window.resizeTo(w, h);
  }
}

function outerWd() {

  if (document.all)
    return document.body.offsetWidth  + ieDiffWidth;
  else
    return window.outerWidth;
}

function outerHt() {

  if (document.all)
    return document.body.offsetHeight  + ieDiffHeight;
  else
    return window.outerHeight;
}

</script>
</head>
<body onload="init()">

<a href="#" onclick="alert(outerWd() + 'x' + outerHt()); return 
false;">Tamaño de la ventana de navegación</a>

</body>
</html> 
Quizas con vbscript se pueda, igual voy a buscar un poco mas

Saludos y gracias