No problem.
On Apr 13, 11:06 am, "David In NH" <dgi...@gmail.com> wrote:
> WOW! It works! Thanks a log Blaine!
>
> - David
>
> <bla...@worldweb.com> wrote in message
>
> news: oups.com...
>
> > use the focus command..
>
> > window.focus();
>
> > On Apr 13, 8:32 am, "David In NH" <dgi...@gmail.com> wrote:
> >> This fragment of code DOES resize the window but if it was minimized, it
> >> doesn't get restored. Any idea of how to get that to happen?
>
> >> <bla...@worldweb.com> wrote in message
>
> >>news: groups.com...
>
> >> > Hey David,
>
> >> > Here is some really old code I have that will resize the window..
> >> > There is probably a nicer way to do it though..
>
> >> > w = 450;
> >> > h = 330;
> >> > if (navigator.appName=="Netscape") {
> >> > top.outerWidth=w;
> >> > top.outerHeight=h;
> >> > } else {
> >> > top.resizeTo(w,h);
> >> > }
>
> >> > On Apr 13, 7:44 am, "David In NH" <dgi...@gmail.com> wrote:
> >> >> Hi All:
>
> >> >> I've got an application that uses a browser window to display help
> >> >> text
> >> >> for
> >> >> the program. When the user presses a button, a help window appears
> >> >> (maximized) in the user's default browser. This works properly when
> >> >> there
> >> >> is
> >> >> no browser window open yet.
>
> >> >> If, however, the user minimizes the window and then presses the button
> >> >> again, nothing appears to happen. What I want to be able to do is to
> >> >> cause
> >> >> the browser window to be maximized again at that point. I've got the
> >> >> javascript code that makes the window initially open maximized but I
> >> >> want
> >> >> something that will re-maximize the window when invoked again.
>
> >> >> Any ideas?
>
> >> >> Thanks.
|