Use this parameter to display image when user places a mouse pointer above the button. Position of this image can be customized using MouseoverImagePosition parameter.
Same as for Image parameter, but default values are inherited form current values of Image.
Display a GIF image on mouse-over.
<applet
width="128"
height="24"
code="PopupNavigator/PopupNavigatorApplet.class"
codebase="./"
archive="PopupNavigator.jar">
<param name="MouseOverImage"
value="down_arrow2.gif">
<param name="MouseOverImagePosition"
value="LEFT;8">
<param name="0"
value="BEPP;http://bepp.8m.com">
<param name="1"
value="Test Page 1;test1.htm">
<param name="2"
value="Test Page 2;test2.htm">
PopupNavigator Java Applet - JDK 1.1.3 needed
</applet>
Display one image in the beginning, and the other one when user places a mouse pointer over the button. Since we haven't used MouseoverImagePosition, mouse-over image stays in the same place as the initial image.
<applet
width="128"
height="24"
code="PopupNavigator/PopupNavigatorApplet.class"
codebase="./"
archive="PopupNavigator.jar">
<param name="Image"
value="down_arrow1.gif">
<param name="ImagePosition"
value="LEFT;8">
<param name="MouseOverImage"
value="down_arrow2.gif">
<param name="0"
value="BEPP;http://bepp.8m.com">
<param name="1"
value="Test Page 1;test1.htm">
<param name="2"
value="Test Page 2;test2.htm">
PopupNavigator Java Applet - JDK 1.1.3 needed
</applet>