lo tenes que hacer en tu
index.html, dentro de los tags head pone lo siguiente:
Código HTML:
<head>
<script>
function miflash()
{
ancho = 447; // ancho de tu swf
alto = 215; // alto de tu swf
y = screen.height/2 - alto/2;
x = screen.width/2 - ancho/2;
window.open("pagina.html", "w", "width="+ancho+",height="+alto+",left="+x+",top="+y+",status=no,scrollbars=no");
}
</script>
</head>
y en el tag body de tu
index.html pones lo siguiente:
Código HTML:
<body onload="miflash">
Y listo!