
August 4th, 2003, 10:23 PM
|
|
Junior Member
|
|
Join Date: Aug 2003
Posts: 16
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
Hey everyone, I endured the very tedious work of trial and error, but I finally came up with the solution... by myself.
The following script is one image rollover. The name 'button' was orignally the same for all my rollovers, all i had to do was change the names to 'buton1' or 'button2' and so on. Thanks for all your help... oh wait, i didn't get any.
<A HREF="characters.htm#bob"
ONMOUSEOUT="changeImages('button', 'images/button.gif'); return true;"
ONMOUSEDOWN="changeImages('button', 'images/button-down.gif'); return true;"
ONMOUSEUP="changeImages('button', 'images/button.gif'); return true;">
<IMG NAME="button" SRC="images/button.gif" WIDTH=40 HEIGHT=39 BORDER=0 ALT=""></A>
|