Is there any way to make only a non-transparent portion of an image to trigger mouse-over event?
If the mouse travels to the transparent area, the mouse-out should b
You could map out where the transparent portions of the image are (given this chroma-key example, I expect you could do this in client side code in some browsers) and then compare the position of the event on a mousemove event to see if the pointer is over the transparent portion or not. Then you just need to add a variable to track if it was over that portion last time you checked or not.