How can I add custom images to FP rollover/interactive buttons?

G

Guest

Hi all, I have being trying to add my own buttons to frontpage but have been
unsucsess ful so far. does anyone know an easy method of creating rollovers
or interactive buttins with you rown images? preferably with the text overlay
still
 
S

Steve Easton

Which version of FrontPage??
If 2003, look at DHTML and Behaviors

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
M

MikeR

I kinda like this approach. It's pretty flexible, and works in both IE
and Firefox. You need two images, one for the regular look, and one for
the moused_over look. You can insert the regular look image with FP,
then go into HTML View and replace the markup for it with this.

<A HREF="whatever.htm"
onMouseOver="document.images[1].src='images/details_on.jpg';
return true;"
onMouseOut="document.images[1].src='images/details_off.jpg';return true;">
<IMG SRC="images/details_off.jpg" ALT="Some comment" VSPACE="0"
HSPACE="0" BORDER="0" width="147" height="15"></A>

Images are contained in an array, which is what the "1" in
document.images[1].src is an index to. The first image on a page is 0
(zero).
HTH MikeR
 
S

Stefan B Rusynko

Or just use FP2003 Interactive Buttons

--




| Which version of FrontPage??
| If 2003, look at DHTML and Behaviors
|
| --
| Steve Easton
| Microsoft MVP FrontPage
| 95isalive
| This site is best viewed............
| .......................with a computer
|
| | > Hi all, I have being trying to add my own buttons to frontpage but have been
| > unsucsess ful so far. does anyone know an easy method of creating rollovers
| > or interactive buttins with you rown images? preferably with the text overlay
| > still
| >
|
|
 

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