Can you create a hover button that will open another instance of a browser?
What I am trying to do is create a pop up window with at printer friendly
version
of the page currently on. It would be nice to bring up the printer dialog
box as
well. How would one accomplish this?

kh

Re: Hover Buttons by Mike

Mike
Thu Dec 04 10:12:28 CST 2003

: Can you create a hover button that will open another
: instance of a browser? What I am trying to do is create a
: pop up window with at printer friendly version
: of the page currently on. It would be nice to bring up
: the printer dialog box as
: well. How would one accomplish this?
:
: kh

I do not have the knowledge to answer your questions, but I
will tell you that hover buttons require Java which is no
longer available from MS, and most developers are not using
them for this reason.



Re: Hover Buttons by kling0n

kling0n
Thu Dec 04 10:21:42 CST 2003

Yikes, that is good to know!

kh

"Mike Mueller" <mikemueller@eci.net> wrote in message
news:%23FKinDouDHA.2368@TK2MSFTNGP09.phx.gbl...
> : Can you create a hover button that will open another
> : instance of a browser? What I am trying to do is create a
> : pop up window with at printer friendly version
> : of the page currently on. It would be nice to bring up
> : the printer dialog box as
> : well. How would one accomplish this?
> :
> : kh
>
> I do not have the knowledge to answer your questions, but I
> will tell you that hover buttons require Java which is no
> longer available from MS, and most developers are not using
> them for this reason.
>
>



Re: Hover Buttons by Crush

Crush
Thu Dec 04 10:42:43 CST 2003

It is just a standard looking button, nothing fancy, but
it does have a hover effect and will do the trick.

1. Put this part in the head of your HTML and just change
Page.htm to the name of the page you want to open. The
rest should be pretty self-explanatory.

<script language="JavaScript">
<!--
function my_win()
{
window.open
('Page.htm','mywindow','width=425,height=560,toolbars=no,l
ocation=no,directories=no,status=no,menubar=no,scrollbars=
yes,copyhistory=no,resizable=no,addressbar=no');
}
//-->
</script>

2. Put this in the Body of your document wherever you
want the placement.

<input TYPE="button" value="Click for Current List"
onClick="javascript:my_win()">





>-----Original Message-----
>: Can you create a hover button that will open another
>: instance of a browser? What I am trying to do is
create a
>: pop up window with at printer friendly version
>: of the page currently on. It would be nice to bring up
>: the printer dialog box as
>: well. How would one accomplish this?
>:
>: kh
>
>I do not have the knowledge to answer your questions,
but I
>will tell you that hover buttons require Java which is no
>longer available from MS, and most developers are not
using
>them for this reason.
>
>
>.
>

Re: Hover Buttons by kling0n

kling0n
Thu Dec 04 13:42:40 CST 2003

thanks!

"Crush" <anonymous@discussions.microsoft.com> wrote in message
news:072f01c3ba85$a3a0d8b0$a001280a@phx.gbl...
> It is just a standard looking button, nothing fancy, but
> it does have a hover effect and will do the trick.
>
> 1. Put this part in the head of your HTML and just change
> Page.htm to the name of the page you want to open. The
> rest should be pretty self-explanatory.
>
> <script language="JavaScript">
> <!--
> function my_win()
> {
> window.open
> ('Page.htm','mywindow','width=425,height=560,toolbars=no,l
> ocation=no,directories=no,status=no,menubar=no,scrollbars=
> yes,copyhistory=no,resizable=no,addressbar=no');
> }
> //-->
> </script>
>
> 2. Put this in the Body of your document wherever you
> want the placement.
>
> <input TYPE="button" value="Click for Current List"
> onClick="javascript:my_win()">
>
>
>
>
>
> >-----Original Message-----
> >: Can you create a hover button that will open another
> >: instance of a browser? What I am trying to do is
> create a
> >: pop up window with at printer friendly version
> >: of the page currently on. It would be nice to bring up
> >: the printer dialog box as
> >: well. How would one accomplish this?
> >:
> >: kh
> >
> >I do not have the knowledge to answer your questions,
> but I
> >will tell you that hover buttons require Java which is no
> >longer available from MS, and most developers are not
> using
> >them for this reason.
> >
> >
> >.
> >



Re: Hover Buttons by Mike

Mike
Thu Dec 04 14:27:48 CST 2003

Naughty me, I forgost to tell you the preferred methods of
replacement for them. Either use javascript buttons or you
can make your own button in a graphics program (paint,
photoshop, whatever) and then make another button for the
'effect'. After you import them into your web, place the
gif of the standard button where you want it and then choose
>Format >DHTML and use a mouseover/swapimage combo. Here is
a link to a very simple example:

http://www.lannonfire.com/support/dhtml_sample.htm


HTH
Mike


: Yikes, that is good to know!
:
: kh
:
: "Mike Mueller" <mikemueller@eci.net> wrote in message
: news:%23FKinDouDHA.2368@TK2MSFTNGP09.phx.gbl...
::: Can you create a hover button that will open another
::: instance of a browser? What I am trying to do is create
::: a pop up window with at printer friendly version
::: of the page currently on. It would be nice to bring up
::: the printer dialog box as
::: well. How would one accomplish this?
:::
::: kh
::
:: I do not have the knowledge to answer your questions,
:: but I will tell you that hover buttons require Java
:: which is no longer available from MS, and most
:: developers are not using them for this reason.