[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

=?Utf-8?B?cm9kY2hhcg==?=

4/20/2004 8:58:00 PM

Ok if the interactive buttons and hover buttons don't
show correctly then I understand I can just create my own
but how do I get the pushed in effect or hover over
effect? Thanks. And why do they offer this feature if
they don't work? Want a button not text and just can't
figure out which way to achieve them. Using FP 03.

Thanks!!!!!
1 Answer

Peter Aitken

4/20/2004 9:22:00 PM

0

"LA" <anonymous@discussions.microsoft.com> wrote in message
news:1c7f01c4271a$289394d0$a101280a@phx.gbl...
> Ok if the interactive buttons and hover buttons don't
> show correctly then I understand I can just create my own
> but how do I get the pushed in effect or hover over
> effect? Thanks. And why do they offer this feature if
> they don't work? Want a button not text and just can't
> figure out which way to achieve them. Using FP 03.
>
> Thanks!!!!!

Make GIF files for the "on" and "off" buttons. I did this by using screen
capture of FP hover buttons. Then:

<a href="index.htm" onmouseover="image1.src='images/button_home_on.gif';"
onmouseout="image1.src='images/button_home_off.gif';">
<img name="image1" src="images/button_home_off.gif" border=0 width="89"
height="24" alt="Home"></a>

index.htm: the target link for the button.
images/button_home_on.gif: the button to display when the mouse is over the
button.
images/button_home_off.gif: the button to display when the mouse is not over
the button.
width and height: size of your GIF images.

Then, to preload the "on" images so they display wihtout a lag, put this in
the <head> section of the page:

<SCRIPT LANGUAGE="JavaScript">
image1 = new Image();
image1.src = "images/button_home_on.gif";
</script>

--
Peter Aitken

Remove the crap from my email address before using.