> Does anyone know how to differentiate between screen > coordinates and svg > document coordinates? (which may be different due to zooming or > panning). Is > there a function that gets the view bounds in document coordinates for > instance?
You can use clientX and clientY on DOM MouseEvent, and you will have the mouse coordinates in the DOMImplementation coordinate system (ie. the document in batik). Thierry. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
