Re: To view SVG Element

2001-12-16 Thread Arvind Sareen
Thanks Theirry, >From: Thierry Kormann <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: [EMAIL PROTECTED] >Subject: Re: To view SVG Element >Date: Fri, 14 Dec 2001 10:30:46 +0100 > >On Friday 14 December 2001 10:13, you wrote: > > Vincent, > > > &

Re: To view SVG Element

2001-12-14 Thread Vincent Hardy
a particular path > because when I try to use the method getAttributeNS(svgNS, "d") with svgroot > which is element of document the it gives me a null value. > > Please help > > Arvind > > >From: Vincent Hardy <[EMAIL PROTECTED]> > >Reply-To: [EMAI

Re: To view SVG Element

2001-12-14 Thread Thierry Kormann
On Friday 14 December 2001 10:13, you wrote: > Vincent, > > Thanks but how do i access d element of a particular path > because when I try to use the method getAttributeNS(svgNS, "d") with > svgroot which is element of document the it gives me a null value. That should be: getAttributeNS(null, "

Re: To view SVG Element

2001-12-14 Thread Arvind Sareen
y-To: [EMAIL PROTECTED] >To: [EMAIL PROTECTED] >Subject: Re: To view SVG Element >Date: Wed, 12 Dec 2001 14:17:57 +0100 > >Arvind, > >If you are trying to read the 's d attribute, you need to >use the getAttributeNS(svgNS, "d") method. > >Vincent. > >

Ooops on Re: To view SVG Element

2001-12-12 Thread Vincent Hardy
Vincent Hardy wrote: > > Arvind, > > If you are trying to read the 's d attribute, you need to > use the getAttributeNS(svgNS, "d") method. Ooops, getAttributeNS(null, "d"); Thanks Thierry for noticing the error. Vincent. - To

Re: To view SVG Element

2001-12-12 Thread Vincent Hardy
Arvind, If you are trying to read the 's d attribute, you need to use the getAttributeNS(svgNS, "d") method. Vincent. Arvind Sareen wrote: > > Hi > > I have created a SVG document and then tried to read it by converting it > into document. Now I want to read path elements values. > Please he

To view SVG Element

2001-12-12 Thread Arvind Sareen
Hi I have created a SVG document and then tried to read it by converting it into document. Now I want to read path elements values. Please help .Below is my code. try { String parser = XMLResourceDescriptor.getXMLParserClassName(); SAXSVGDocumentFactory f = new SAXSVGD