Discussion:
full screen from drop down menu
(too old to reply)
James
2003-10-09 12:52:42 UTC
Permalink
On my home page I currently have a number of buttons, that
when clicked open page in a new full screen mode window
(no nav bars, no menus, nothing). For this i use following
script:

<SCRIPT LANGUAGE="JavaScript1.2">
function FullScreen()
{window.open('page_to_open.htm','myName',
'width='+screen.width+',height='+screen.height+',top=0,left
=0');
}
</SCRIPT>

This will open a full screen according to users screen
size. So far so good.

My problem is that the number of buttons is constantly
being increased and hence it is not neat anymore. So I
would like to use dropdown menus.

If i use somthing like menu below with *_blank after page
url, the page will open in a new window, but how do i open
it in full screen mode?

<form action="dummy" method="post"><select name="choice"
size="1" onChange="jump(this.form)"><option
value="http://www.yahoo.com*_blank">YAHOO</option><option
value="">d</option></select></form>

This problem has been eluding me for some time now, any
help would be much apreshiated.
Tom P. Willett
2003-10-09 12:56:42 UTC
Permalink
Hi, James:

The programming/visual basic newsgroup has been discontinued. You may wish
to post in microsoft.public.frontpage.programming
--
------------------------------
Tom P. Willett
Microsoft MVP - FrontPage
http://www.microsoft.com/frontpage
To find the best Newsgroup for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
------------------------------
"James" <***@yahoo.com> wrote in message news:052801c38e64$3a4637e0$***@phx.gbl...
| On my home page I currently have a number of buttons, that
| when clicked open page in a new full screen mode window
| (no nav bars, no menus, nothing). For this i use following
| script:
|
| <SCRIPT LANGUAGE="JavaScript1.2">
| function FullScreen()
| {window.open('page_to_open.htm','myName',
| 'width='+screen.width+',height='+screen.height+',top=0,left
| =0');
| }
| </SCRIPT>
|
| This will open a full screen according to users screen
| size. So far so good.
|
| My problem is that the number of buttons is constantly
| being increased and hence it is not neat anymore. So I
| would like to use dropdown menus.
|
| If i use somthing like menu below with *_blank after page
| url, the page will open in a new window, but how do i open
| it in full screen mode?
|
| <form action="dummy" method="post"><select name="choice"
| size="1" onChange="jump(this.form)"><option
| value="http://www.yahoo.com*_blank">YAHOO</option><option
| value="">d</option></select></form>
|
| This problem has been eluding me for some time now, any
| help would be much apreshiated.
|
Loading...