tengo este codigo en mi index el cual me abre en fullscreen una pagina flash.
la pregunta es en flash hay un boton para cerrar esta y bolver al index que codigo debe llevar el boton
este es el codigo
<script language="javascript">
<!-- hide
var w = screen.width - 10;
var h = screen.height - 30;
var file_path = "main.html";
if(w < 850){
file_path = "main_800x600.html";
}
function openWindow(){
newwin=window.open(file_path,"knollwin", "fullscreen=yes,scrollbars=0,resizable=no,loc ation=no,menubar=no,status=no,width=" + w + ",height=" + h + ",left=0,top=0");
}
// show -->
</script></head>