buttons

L

LA

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!!!!!
 
P

Peter Aitken

LA said:
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>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top