I'm not having too much luck over at the Java forum with this, so thought I'd post here since the problem is a combination of Java and dot NET.
Its an important issue, and if resolved, can open up an array of mouse over events (pop ups, etc).
The idea is simple. You have an image. Just below the images are several Hyperlinks that cause the image to change on "mouse over".
Now, the trick is this; to change the ImageMap at the same time. Here's what I have:
Dim strMap As String
Sub Page Load...
...
strMap = "<area... image map ...>" &_
"<area... " " ...>" & _
"<area... and so on ...>"
...then, in the image tags, I have the following:
<img src='MO1.png' name="Image1" width="380" height="200" border="0" usemap="#map1">
<map name="map1">
<%=strMap%>
</map>
When the page loads, the initial image has the proper Imagemap associated with it.
Now, when I mouse over the sublabels to change the image, can I get the image map to swap out at the same time as the image?
Its an important issue, and if resolved, can open up an array of mouse over events (pop ups, etc).
The idea is simple. You have an image. Just below the images are several Hyperlinks that cause the image to change on "mouse over".
Now, the trick is this; to change the ImageMap at the same time. Here's what I have:
Dim strMap As String
Sub Page Load...
...
strMap = "<area... image map ...>" &_
"<area... " " ...>" & _
"<area... and so on ...>"
...then, in the image tags, I have the following:
<img src='MO1.png' name="Image1" width="380" height="200" border="0" usemap="#map1">
<map name="map1">
<%=strMap%>
</map>
When the page loads, the initial image has the proper Imagemap associated with it.
Now, when I mouse over the sublabels to change the image, can I get the image map to swap out at the same time as the image?