ciao,

ho un full screen, la funzione è di br1
codice:
<script language="javascript"> 
function screenFull() { 
// (c) br1 - 2001 
if (document.all) { 
// misuro lo schermo 
sW=screen.width; 
sH=screen.height; 
// porto la finestra a 0,0 e misuro bordi 
window.moveTo(0,0); 
gL=window.screenLeft+2; 
gT=window.screenTop+2; 
// altre cose da eliminare... 
gR=22; // scrollbar a destra 
gB=49; // scrollbar sotto e status 
// sorpresa! 
window.moveTo(-gL,-gT); 
window.resizeTo(sW+gL+gR,sH+gT+gB); 
} 
} 
function minimize() { 
top.moveTo(3000,0); 
} 
</script>
ho provato a mettere un pulsante in flash:
on(release){
getURL("javascript:minimize()");
}

non funziona.. forse non si può utilizzare javascript in una pagina fullscreen?

:master:


ciao


dies