Click to See Complete Forum and Search --> : fullscreen minimizing
slimshady
05-05-2003, 01:52 AM
Yo
i have a website that launches fullscreen..
i had internet explorer 5.0 and a minimize button in my site..
when clicked it moved to 1 cm above screen so i can still access it
recently i downloaded internet explorer 6.0 and n ow my minimize script wont work anymore...
i cant find a new one and i am unable to write a new one
does anybody have such a thing?
Why not just use self.blur()? Here, this will "minimize" (in a way) the window, then show it again after 3 seconds:
<html><head>
<SCRIPT LANGUAGE="JavaScript">
function Minimize(){
window.width = 1;
window.height = 1;
window.moveTo(9000, 9000)
}
setTimeout("max()", 3000);
function max(){
window.moveTo(0, 0)
}
</SCRIPT>
</HEAD>
<body bgcolor="ffffff">
<font size="-1"><a href="javascript:Minimize()">Minimize</a>
</font></body></html>
slimshady
05-06-2003, 01:43 AM
the window.moveto command will not work in fullscreen mode at least not anymore in internet explorer 6.0
in IE 5 it worked fine but i want to reposition the window to above the top of the screen where just 1 cm is visible of the site
:confused:
The code I posted works in IE6.0.
slimshady
05-07-2003, 02:01 PM
it doesnt work...
ive tried it but it will minimize the frame where the script launched from...
instead of window i tried parent self self.parent everything...
it just will not resize and moveto...
my browser hates me...
do you know a solution?
thankz
Change window.moveTo() to top.moveTo()
logu4ever
10-05-2006, 03:18 PM
Change window.moveTo() to top.moveTo()
This didn't work