I have a row in a table, like this:
Which is basically a large table row with an image located within it.Code:<TBODY> <TR style="POSITION: relative" id=theRow height=90> <TD style="POSITION: relative" id=theTableDate bgColor=#ffffff height="100%" width=600> <IMG style="POSITION: absolute; WIDTH: 13px; HEIGHT: 10px; TOP: 41px; LEFT: 295px" id=myImage src="Picture.gif"> </IMG> </TD> </TR> </TBODY>
I do a setCapture on theRow and intercept the mouse movements during the capture with my on onMouseMove method, which displays the coordinates of the mouse as it's moving.
But it only captures the mouse movement while the mouse is on the image. When the mouse is off the image, but still within theRow's area, my onMouseMove method doesn't get called.
Any suggestions?


Reply With Quote
Bookmarks