Hi HardC0d3r, hardc0d3r <[EMAIL PROTECTED]> wrote on 05/02/2007 12:29:30 PM:
> for example, i want to drag an object in the svg.. how is this done in batik? > can java do this or i have to do this in javascript? Typically you update the contents of the DOM through setAttributeNS calls, adjusting the "transform" attribute or sometimes the "x" and "y" attributes on elements. You can do this in either Java or javascript you get to take your pick. Most of the methods/functions you see called in javascript code are essentially the same for Java (often more casting is needed for Java since it's a more strongly typed language). --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
