Browser Size

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Just started using FP2003 (ex Dreamweaver) and I'm on a steep learning curve - how can I set the browser opening size?
 
The free Spawn from Jimco Addins
www.jimcoaddins.com


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer

Roger said:
Just started using FP2003 (ex Dreamweaver) and I'm on a steep learning
curve - how can I set the browser opening size?
 
Choose - File - preview in browser - select size
-----Original Message-----
The free Spawn from Jimco Addins
www.jimcoaddins.com


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer


(e-mail address removed)... a steep learning
curve - how can I set the browser opening size?


.
 
I believe the poster meant the size of a new page when a link is clicked.

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
DANG! I NEVER noticed that! I alway used the Icon! Sheesh, that's soo much more convienient that resetting the res. I wonder what other goodies I've overlooked.


| Choose - File - preview in browser - select size
| >-----Original Message-----
| >The free Spawn from Jimco Addins
| >www.jimcoaddins.com
| >
| >
| >--
| >Steve Easton
| >Microsoft MVP FrontPage
| >95isalive
| >This site is best viewed............
| >........................with a computer
| >
| message
| >| (e-mail address removed)...
| >> Just started using FP2003 (ex Dreamweaver) and I'm on
| a steep learning
| >curve - how can I set the browser opening size?
| >
| >
| >.
| >
 
Thanks for the feedback so far guys; to clarify, what I meant was: when someone arrives at my website, how do I set it so that the browser opens up to display my index,htm page at a size I predetermine, whatever there browser may already be displaying at. For instance, say I want it to display at 800x600, when the user is browing at 640x480 or 1024x768. I hope this is clearer. ;-)
 
Ah ok.
Set the width of the table at a fixed width of 750 pixels, and then place
all of the content inside the table.


--
Steve
(e-mail address removed)
www.crownlogistic.com
Roger said:
Thanks for the feedback so far guys; to clarify, what I meant was: when
someone arrives at my website, how do I set it so that the browser opens up
to display my index,htm page at a size I predetermine, whatever there
browser may already be displaying at. For instance, say I want it to display
at 800x600, when the user is browing at 640x480 or 1024x768. I hope this is
clearer. ;-)
 
Steve,

He want to actually change the user browser's window to whatever size he has
designed his site for.

Example, I run at 1280 x 1024 but browse at say 700 x 700 pixels, he want to
automatically change my Browser's window to 800 x 600 pixels when I visit
his site.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle,
MS KB Quick Links, etc.
==============================================
 
Uh uh, what he said was he wants the page to display at 800 by 600
regardless of whether the browser is set at 640x480 or 1024x768.

The only way to do this in a 640 by 480 browser is to use a fixed table that
results in scrollbars at lower resolutions.
How can you open a 800 by 600 window on a 640 by 480 browser otherwise.
Where are the toolbar and status bar going to be??


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer
 
Roger,

I did a search and could not locate one script that would do all of what you
want, it would take locating 3 different scripts that would then have to be
combined into one, and you would have know and understand JavaScript.

The first script would be one that detects the browser's window opening size
and has to have multiple routines to handle the various browsers and
versions.

The second script would be one that adjust the user's browsers.

The third script would then load the site.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle,
MS KB Quick Links, etc.
==============================================
 
Steve, he want his site to change the current open browser window to a
larger size, if it is open at less then 800 pixels on a resolution of 800 or
higher.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle,
MS KB Quick Links, etc.
==============================================
 
Actual the best solution would be use JavaScript to open a new window at 800
pixels, after detecting the user's resolution, and not try to adjust the
user's browser window.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle,
MS KB Quick Links, etc.
==============================================
 
Roger, are you saying that Dreamweaver has a function that automatically
resizes a user's browser window? If so, can you provide a URL to a site
using this function?

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle,
MS KB Quick Links, etc.
==============================================


Roger said:
Guys, all I want to do is ensure that when a visitor lands on our home
page, the browser opens at the size its been designed for. I don't want to
stop it being resized, but I do want to ensure that initially, it looks
right! Perhaps I should go back to Dreamweaver. ;-(
 
OK, I'm confused.

If I have my monitor set at 640x480 what is going to happen if you command a
web page to open at 800 by 600??

The browser window will be off of the screen.

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer
 
Those users would have to scroll, as the script would have just load the
page without trying to adjust the browser's window size.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle,
MS KB Quick Links, etc.
==============================================
 
Thomas, I can't give you a url, but this is what I used to use in DW: </script><script language="JavaScript"
/*
Made By Eddie Traversa
*/

self.moveTo((""),("")
self.resizeTo(("800"),("600"))
void(outerWidth=800);
void(outerHeight=600)


</script

However, although it works locally in FP2003, it doesn't work once I've published the site to my host!! Perhaps someone can tell me why or how to fix it.
 
Roger,

The script work just fine. How are you insert this into your page?

However it has no means to check the user's current resolution.

Here is a working example of the script as provided by you:

http://www.ycoln-resources.com/roger.htm

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle,
MS KB Quick Links, etc.
==============================================


Roger said:
Thomas, I can't give you a url, but this is what I used to use in DW:
/*
Made By Eddie Traversa
*/

self.moveTo((""),(""))
self.resizeTo(("800"),("600"))
void(outerWidth=800);
void(outerHeight=600);


</script>

However, although it works locally in FP2003, it doesn't work once I've
published the site to my host!! Perhaps someone can tell me why or how to
fix it.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top