Originariamente inviato da Sam981
Beh... non sapevo di quella pillola. Ho trovato un sacco di roba inetressante che non sai da quanto cercavo!!
Però il full screen non mi funziona.
Ho un'index che setta i freme. devo piazzarlo lì?
Così: ...?
<html>
<head>
<title>Madame Stella</title>
<script>
/* Scritto da Br1 e ottimizzato da Mackey */
function screenFull() {
if (document.all) {
sW=screen.width;
sH=screen.height;
window.moveTo(0,0);
window.resizeTo(sW,sH);
gT=window.screenTop;
gL=window.screenLeft;
gR= sW - gL - document.body.offsetWidth;
gB= sH - gT - document.body.offsetHeight;
window.moveTo(-gL,-gT);
window.resizeTo(sW+gL+gR,sH+gT+gB);
}
else if(self.name!="start") {
var start = window.open(this.location.href,"start","fullscreen =1");
window.close();
}
}
</script>
</head>
<frameset cols="*,780,*" rows="*" frameborder="NO" border="0" framespacing="0">
<frame src="" name="leftFrame" scrolling="NO" noresize>
<frameset rows="202,*,79" cols="*" frameborder="NO" border=0 framespacing="0">
<frame src="top.html" name="topFrame" scrolling="NO" noresize scrolling="NO">
<frameset cols="246,*" rows="*" frameborder="NO" border=0 framespacing="0">
<frame src="extra.html" name="extraFrame" noresize scrolling="NO">
<frame src="home.html" name="middleFrame" noresize>
</frameset>
<frame src="bottom.html" name="bottomFrame" scrolling="NO" noresize>
</framset>
<frame src="" name="rightFrame" scrolling="NO" noresize>
</frameset>
</html>
:master: