I know how to use pop-up windows, unfortunately my problem is that I need to open a html file from Adobe Acrobat. So I need to open a HTML file that independantly knows what it's own attributes are going to be.
Lucas
In javascript, you can stick this on the page you want to open to move and resize that window:
self.resizeTo(20,0);
self.resizeTo(100,40);
If you want to do more than that, say take off the toolbars, you are going to need to make an opener page that tells it to make a new page without the toolbars(I assume you know how to do that). Then, in the new page (the one you want to finally see) put this instead of <body>:
<body onLoad="window.opener.close();">
Rick It's a pleasure to know that I've helped you. If I have,
please click the link below to let me know.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.