PDA

View Full Version : Change StatusBar with ImageMap OnMouseOver...?


esntric
09-07-2002, 03:30 PM
<html>
<head>
<style>
.1 {cursor: default;}
</style>
</head>


<body bgcolor="#000000">

<div align="center" class="1">
<br>
<img src="image.gif" usemap="#map" border="0">
</div>
<map name="map">
<area shape="rect" coords="1,1,100,10" href="test.html" title="" target="frame">
<area shape="default" nohref>
</map>
</body>
</html>



How do I change the status bar at the bottom?

I used a program to create the map so I could get a feel for how they are wrote. Is there a reason why <area shape="default" nohref> is there, or is that just a bug in the program?


By the way, can someone give me a link to a good, easy to understand tutorial explaining layers?

vkidv
09-07-2002, 04:10 PM
that means there is no "href" in other words no link, just a clickable area -


when you click there, there will be nowhere where you go - No link

Mr J
09-07-2002, 04:16 PM
Try this:


<area shape="rect" coords="1,1,100,10" href="test.html" title="" target="frame" onmouseover="window.status='HI there'">

For some information on layers see:


www.huntingground.freeserve.co.uk/style/layers.htm

redhead
09-07-2002, 04:23 PM
take a look at this thread:

http://www.codingforums.com/showthread.php?s=&threadid=691

hairynugs6382
09-07-2002, 04:57 PM
dont forget this part

<a href="javascript:void(null)" onMouseover="window.staus='Blah Blah Blah'; return true" onMouseout="winow.status='Blah blah blah'; return true">blah blah...</a>

the return true critical part for it to work

esntric
09-07-2002, 05:31 PM
Alright, I've got it now. Thank you all. :D