Open a page in a browser with specific dimensions (e.g. 720w x 600

V

vinceg

I tried 'Format/Behaviors/Insert a pop-up window...'
but that doesn't do it for this application.
I would like to have a window open that is constrained
in width, and ideally, positioned a few pixels to the right
of the left side of the screen, but I can give up the
positioning if I can get the width set correctly.
I've searched Help, but I've not found anything.
Any suggestions will be appreciated.
Thanks,
 
V

vinceg

Ronx,
Thanks for the quick response.
I will check the product and hope it does the trick.

In the meantime, I found a little java script:

<SCRIPT>
window.resizeTo(740,800);
</SCRIPT>

<SCRIPT LANGUAGE="javascript">
var width = screen.width
var height = screen.height
document.write("<BODY onUnload=window.resizeTo("+width+ "," +height+")>")
</SCRIPT>

that sizes the browser window on open, and
resizes it when the 'Back' button is used.
The only wrinkle is that it resizes to the right edge of the screen.
Thanks again,
 
Top