473,379 Members | 1,330 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,379 software developers and data experts.

image map and status bar?

When the mouse is over an image map where the various parts of the image are links to other areas, the status bar says, "Shortcut to ..." I would prefer to have the status bar say something different. The onmouseover and onmouse out events do not work for this purpose. Whether they are in the <IMG> whether they are in the <MAP> and whether they are in the <AREA> tags. They do not allow the status bar to change. Please try it out. Thanks.
Microsoft Internet Explorer 5.5 SP2 Windows 2000 SP3.

--
George Hester
__________________________________
Jul 20 '05 #1
10 1594
George Hester wrote something like Sat 10 Jan 2004 12:07:42p ...
When the mouse is over an image map where the various parts of the image
are links to other areas, the status bar says, "Shortcut to ..." I
would prefer to have the status bar say something different. The
onmouseover and onmouse out events do not work for this purpose.
Whether they are in the <IMG> whether they are in the <MAP> and whether
they are in the <AREA> tags. They do not allow the status bar to
change. Please try it out. Thanks. Microsoft Internet Explorer 5.5 SP2
Windows 2000 SP3.


I had a similar problem lately, you might just need to add "return true;"
after your function call, like this:

onMouseOver="self.status='statusbar message here';return true;"
onMouseOut="self.status='';"

worked for me. :)

--

¤ £õñþõñ ßõ¥ ¤

Jul 20 '05 #2
Thanks I'll give that a shot.

--
George Hester
__________________________________
"London Boy" <Lo*@don.boy> wrote in message news:Xn***********************@206.167.113.101...
George Hester wrote something like Sat 10 Jan 2004 12:07:42p ...
When the mouse is over an image map where the various parts of the image
are links to other areas, the status bar says, "Shortcut to ..." I
would prefer to have the status bar say something different. The
onmouseover and onmouse out events do not work for this purpose.
Whether they are in the <IMG> whether they are in the <MAP> and whether
they are in the <AREA> tags. They do not allow the status bar to
change. Please try it out. Thanks. Microsoft Internet Explorer 5.5 SP2
Windows 2000 SP3.


I had a similar problem lately, you might just need to add "return true;"
after your function call, like this:

onMouseOver="self.status='statusbar message here';return true;"
onMouseOut="self.status='';"

worked for me. :)

--

¤ £õñþõñ ßõ¥ ¤

Jul 20 '05 #3
Nope didn't work. I put these in the <AREA tags. Of course I know about the "return true" I wish it were that simple. I use these onmouseover and omouseout throughout the site so there must be more here then meets the eye. The status bar refuses to follow the directions of the script for the onmouseover and onmouseout events. Other script in those events work just fine. It's just that the status bar directives are not working. Thanks though.

--
George Hester
__________________________________
"London Boy" <Lo*@don.boy> wrote in message news:Xn***********************@206.167.113.101...
George Hester wrote something like Sat 10 Jan 2004 12:07:42p ...
When the mouse is over an image map where the various parts of the image
are links to other areas, the status bar says, "Shortcut to ..." I
would prefer to have the status bar say something different. The
onmouseover and onmouse out events do not work for this purpose.
Whether they are in the <IMG> whether they are in the <MAP> and whether
they are in the <AREA> tags. They do not allow the status bar to
change. Please try it out. Thanks. Microsoft Internet Explorer 5.5 SP2
Windows 2000 SP3.


I had a similar problem lately, you might just need to add "return true;"
after your function call, like this:

onMouseOver="self.status='statusbar message here';return true;"
onMouseOut="self.status='';"

worked for me. :)

--

¤ £õñþõñ ßõ¥ ¤

Jul 20 '05 #4
Aha I see what the trouble is. If the href attribute is in the <AREA> we are NOT going to be able to control the status bar. It's as simple as that. I removed the href attribuute from the <AREA> because I really don't need to "go anywhere" when the image map is clicked. Either the browser will ask to close (I'd really like it to close without the nag) or the other one I have a better idea for. Thanks anyway probably a bug in Windows 2000 SP3 and Microsoft Internet Explorer 5.5 SP2 December Cumulative update.

This person had another way:

http://hotwired.lycos.com/webmonkey/...tw=programming

but it didn't work either. In the page I have. Who knows if it does out of the box.

--
George Hester
__________________________________
"London Boy" <Lo*@don.boy> wrote in message news:Xn***********************@206.167.113.101...
George Hester wrote something like Sat 10 Jan 2004 12:07:42p ...
When the mouse is over an image map where the various parts of the image
are links to other areas, the status bar says, "Shortcut to ..." I
would prefer to have the status bar say something different. The
onmouseover and onmouse out events do not work for this purpose.
Whether they are in the <IMG> whether they are in the <MAP> and whether
they are in the <AREA> tags. They do not allow the status bar to
change. Please try it out. Thanks. Microsoft Internet Explorer 5.5 SP2
Windows 2000 SP3.


I had a similar problem lately, you might just need to add "return true;"
after your function call, like this:

onMouseOver="self.status='statusbar message here';return true;"
onMouseOut="self.status='';"

worked for me. :)

--

¤ £õñþõñ ßõ¥ ¤

Jul 20 '05 #5
George Hester wrote something like Sat 10 Jan 2004 11:03:47p ...
Nope didn't work. I put these in the <AREA tags. Of course I know
about the "return true" I wish it were that simple. I use these
onmouseover and omouseout throughout the site so there must be more here
then meets the eye. The status bar refuses to follow the directions of
the script for the onmouseover and onmouseout events. Other script in
those events work just fine. It's just that the status bar directives
are not working. Thanks though.


I tried :)

--

¤ £õñþõñ ßõ¥ ¤

Jul 20 '05 #6
George Hester wrote something like Sat 10 Jan 2004 11:27:19p ...
This person had another way:

http://hotwired.lycos.com/webmonkey/...tw=programming

but it didn't work either. In the page I have. Who knows if it does
out of the box.


Good luck, hope you'll find a way. It sucks when we get stuck like that.

--

¤ £õñþõñ ßõ¥ ¤

Jul 20 '05 #7
Woah buddy. I read that we could use the onclick event. So I put this in one of the <AREA> of the image map:

onclick="javascript:window.open('help.htm');"

whew doggy. That just sent Windows 2000 into a caniption fit. I have to reboot. cu.

--
George Hester
__________________________________
"London Boy" <Lo*@don.boy> wrote in message news:Xn***********************@206.167.113.101...
George Hester wrote something like Sat 10 Jan 2004 12:07:42p ...
When the mouse is over an image map where the various parts of the image
are links to other areas, the status bar says, "Shortcut to ..." I
would prefer to have the status bar say something different. The
onmouseover and onmouse out events do not work for this purpose.
Whether they are in the <IMG> whether they are in the <MAP> and whether
they are in the <AREA> tags. They do not allow the status bar to
change. Please try it out. Thanks. Microsoft Internet Explorer 5.5 SP2
Windows 2000 SP3.


I had a similar problem lately, you might just need to add "return true;"
after your function call, like this:

onMouseOver="self.status='statusbar message here';return true;"
onMouseOut="self.status='';"

worked for me. :)

--

¤ £õñþõñ ßõ¥ ¤

Jul 20 '05 #8
George Hester wrote:
Woah buddy. I read that we could use the onclick event. So I put
this in one of the <AREA> of the image map:


Dude, look at my reply in the weep thread.
JW

Jul 20 '05 #9
Oh now I used the onclick event. That fixed it. Why Windows 2000 coughed like that when I accessed the link don't know I can't replicate it.

--
George Hester
__________________________________
"George Hester" <he********@hotmail.com> wrote in message news:yj*******************@twister.nyroc.rr.com...
When the mouse is over an image map where the various parts of the image are links to other areas, the status bar says, "Shortcut to ..." I would prefer to have the status bar say something different. The onmouseover and onmouse out events do not work for this purpose. Whether they are in the <IMG> whether they are in the <MAP> and whether they are in the <AREA> tags. They do not allow the status bar to change. Please try it out. Thanks.
Microsoft Internet Explorer 5.5 SP2 Windows 2000 SP3.

--
George Hester
__________________________________
Jul 20 '05 #10
Hi this may be another fix to this issue:

http://support.microsoft.com/default...b;en-us;185532

--
George Hester
__________________________________
"George Hester" <he********@hotmail.com> wrote in message news:yj*******************@twister.nyroc.rr.com...
When the mouse is over an image map where the various parts of the image are links to other areas, the status bar says, "Shortcut to ..." I would prefer to have the status bar say something different. The onmouseover and onmouse out events do not work for this purpose. Whether they are in the <IMG> whether they are in the <MAP> and whether they are in the <AREA> tags. They do not allow the status bar to change. Please try it out. Thanks.
Microsoft Internet Explorer 5.5 SP2 Windows 2000 SP3.

--
George Hester
__________________________________
Jul 20 '05 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Kevin Lyons | last post by:
Hello, Can anyone assist me with what I am trying to do with the following code (six different scenarios to try to make the functionality work correctly)? I want to always (and ONLY) display...
14
by: D. Alvarado | last post by:
Hello, I am trying to open a window containing an image and I would like the image to be flush against the window -- i.e. have no padding or border. Can I make this happen with a single call to a...
1
by: sergiotb | last post by:
Hello everyone!! I'm trying to send a image (jpg) from a C# program to a CGI perl. The problem is that the code of the client C# is not working properly...I guess. The steps to send the image are: 1)...
3
by: Froefel | last post by:
Hi group, I'm looking for some help on how to achieve the following in a gridview control that is based on an ObjectDataSource. The SelectMethod of the datasource returns a list of Customer...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.