Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

open browser window full screen 3

Status
Not open for further replies.

pbb

Programmer
Jan 8, 2001
151
US
Hello everyone
would anyone know a script that would enable me to have a browser window open AUTOMATICALLY at full screen?
This is very urgent, any help will be greatly appreciated.
Thanks!

Patricia
 
Hi Patricia,

if you ask the same questions in two forums you should probably include something like:
"I have also asked this question in thread253-263983 "


Your question has been asked before, i'll see can I dig out the answer.


É
<!--#include file=&quot;profound quotation&quot; -->
 
I couldn't find it, but maybe try this in the head section of your document:

<script language=&quot;JavaScript&quot;>
self.moveTo(0,0);
self.resizeTo(screen.availWidth,screen.availHeight);
</script>

It works for me but hopefully the guys have a better way.


É
<!--#include file=&quot;profound quotation&quot; -->
 
Hello Cian

Thanks for the tip, I'll see if my guy can make it work with that.
Thanks also for the netiquette..... did not know I had to notify the second forum that I had asked the same question in a different forum. I only did it because it it very urgent that I find a solution, I need to give my client an answer tomorrow.
Thanks

Patricia
 
Hi,
yeah its ok, i understand! Its just in case we end up giving the same answers in the other thread! No biggie.
Hopefully the other guys know a better way.

You can check at I know they have scripts for this but when i visited I couldn't access the page for some reason. But they definitly have this script there!


É
<!--#include file=&quot;profound quotation&quot; -->
 
Great! Thanks so much Erik! And thanks again Cian!
You've been both of great help :)

Thanks a million!

Patricia
 
VBScript has a command that will do it Screen.maximize. I don't see a direct reference in javascript to do this, but if you can use VBScript this should work easy. Just put it in the body onload event. The money's gone, the brain is shot.....but the liquor we still got.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top