tags:

views:

16

answers:

2

Can i create img map and then add several click event? for example this img- I have 4 area for event top-left, top-right etc. How i can do this?

alt text

I need something like tag map on HTML.

A: 

You should check out flexlib. I found this via a search and the result was already in StackOverflow: http://stackoverflow.com/questions/535003/image-map-in-flex So technically this question is a duplicate.

Organiccat
+1  A: 

Another approach would be to set the buttonMode to true on your image, add a click handler to it, then check if the point that got clicked is in any of the particular areas you care about. Hope that helps.

Wade Mueller
Thank you very much. You helped me a lot.
infate