Click to See Complete Forum and Search --> : How I Can Change The Size Of The Window?


gmichal
03-03-2003, 03:30 PM
I HAVE THIS LINE
<BODY ONLOAD='WINDOW.RESIZETO(400,500);RETURN TRUE;'>
IT IS RESIZE THE DOCUMENT BUT THE WINDOW IS STILL ON THE ALL SCREEN....ANYONE KNOWS WHAT I NEED TO DO?

pyro
03-03-2003, 03:44 PM
I don't understand what is is that you need to do. Would you please clarify?

dabush
03-03-2003, 05:49 PM
if you mean that the windo is not fullscreen, do this.

<body onLoad="resizeTo(screen.availWidth,screen.availHeight);">

gmichal
03-03-2003, 06:32 PM
no i want taht it will NOT be a full screen....or window
what i have now it is aon a full screen....

Nicodemas
03-04-2003, 01:48 AM
I made a short test page, and it worked fine for me. Make sure that you are using correct capitalization (uppercase/lowercase). Make sure it reads exactly like resizeTo(###,###)

<html>
<body onLoad="self.resizeTo(400,500)">
I like pie
</body>
</html>

celebguy_dv
03-04-2003, 03:28 AM
http://banners.dollarmachine.com/pic/2014000/hal001.gif (http://www.kinkyceleb.com/1261795520)

gmichal
03-05-2003, 11:52 AM
thanks