Re: [svg-developers] I cannot see my own posting

2007-10-15 Thread Doug Schepers
Hi, Fulio- I suspect the problem may be on your end. I've seen several posts by you, and your account shows that you should be receiving individual emails. Perhaps you need to update your email address on your account? Your messages do seem to be getting through, as you can see on the Yahoo

[svg-developers] Job Available

2007-10-15 Thread dridgy
I hope nobody minds me posting this here as the SVG jobs group appears to be defunct:- Mango Solutions are a data analysis company based in the UK who work with some of the largest companies in the world delvering bespoke solutions that allow deployment of sometimes complex analysis to widespr

[svg-developers] I cannot see my own posting

2007-10-15 Thread Fulio Pen
I wish the group leader could see this message. I left this group for a couple of days, and came back about 20 hours ago. After seeing postings by other members in my email account, I sent a message to the list. Not receiving it in my own email account after a few hours, I sent it again, beli

[svg-developers] Re: Gradient problems

2007-10-15 Thread DamianZ
Thanks Frank. I use the tag and it works. And now we found other problem, with FF2 is very slow. The web is a xhtml document ( embbebed svg ) when i change to SVG pure it works faster. I've functionality in html. This is not true for ff3 or Opera. Is that other bug of FF2? Saludos, Da

Re: [svg-developers] Could anyone help to modify a code

2007-10-15 Thread ~:'' ありがとうございました 。
Fulio, just to be clear, this is not how I would do it... there's plenty of 'junk code' still present Probably javascript isn't necessary at all, hopefully you can move it along best wishes Jonathan Chetwynd Accessibility Consultant on Media Literacy and the Internet [Non-text portions of

[svg-developers] Could anyone help to modify a code

2007-10-15 Thread Fulio Pen
Hello, Quite a long time ago, I was helped by a list member with an svg and javascript code for my linguistic research. I sincerely appreciate his/her expertise and kindness. Now I am intending to modify the code. The original code is in the following web page: http://www.pinyinology.com/zh

Re: [svg-developers] Re: Google searching for SVGs now on?

2007-10-15 Thread ~:'' ありがとうございました 。
kirby, using filetype:svg site:wikimedia.org it's seems evident that google is referencing the text in html pages, the results are labelled .svg but in fact are html regards Jonathan Chetwynd Accessibility Consultant on Media Literacy and the Internet On 15 Oct 2007, at 14:26, skatet

[svg-developers] Re: Google searching for SVGs now on?

2007-10-15 Thread skatethere
--- In svg-developers@yahoogroups.com, "~:'' ありがとうã"ざいました。" <[EMAIL PROTECTED]> wrote: > I didn't know offiletype, but the results seem very poor. > do you have some good cases? > > with: filetype:svg Here's a query that gives lots of results: filetype:svg site:wikimedi

[svg-developers] Please help to modify a code

2007-10-15 Thread Fulio Pen
Hello, Quite a long time ago, I was helped by a list member with an svg and javascript code for my linguistic research. I greatly appreciate his/her expertise and kindness. Now I am intending to modify the code. The original code is in the following web page: http://www.pinyinology.com/zhgp

[svg-developers] How to fill a path with color

2007-10-15 Thread Mandeep Jootle
I have the following code, which builds a pie chart using paths to fill each segmant:- this.PieElements = new Array() // array of pie wedges this.PieElements[this.PieElements.length] = this.SVGDocument.createElementNS("http://www.w3.org/2000/svg";, "path") if(SegmentCount

[svg-developers] Re: how to get width of text node through javascript

2007-10-15 Thread juninbox
yes, you right, after I appended the element into svgdoc, I got correct width. many thanks! --- In svg-developers@yahoogroups.com, Antoine Quint <[EMAIL PROTECTED]> wrote: > > On 15 oct. 07, at 11:31, juninbox wrote: > > > could you please explain more about how to invoke the interface. I > > tri

Re: [svg-developers] Re: how to get width of text node through javascript

2007-10-15 Thread Antoine Quint
On 15 oct. 07, at 11:31, juninbox wrote: > could you please explain more about how to invoke the interface. I > tried below ways, all were failed: > > var dat= svgDoc.createTextNode("I am one rect"); > var t = svgDoc.createElementNS(svgns,"text"); > t.setAttributeNS(null,"x",6); > t.setAttributeNS

[svg-developers] Re: how to get width of text node through javascript

2007-10-15 Thread juninbox
could you please explain more about how to invoke the interface. I tried below ways, all were failed: var dat= svgDoc.createTextNode("I am one rect"); var t = svgDoc.createElementNS(svgns,"text"); t.setAttributeNS(null,"x",6); t.setAttributeNS(null,"y",20); t.setAttributeNS(null,"text-anchor", "st

Re: [svg-developers] how to get width of text node through javascript

2007-10-15 Thread Antoine Quint
Hi, You can simply use the .getComputedTextLength() method. It's part of the SVGTextContentElement interface which has other useful methods on it to work with and elements. http://www.w3.org/TR/SVG11/text.html#InterfaceSVGTextContentElement Antoine -- Blog — http://the.fuchsia-design.com

[svg-developers] how to get width of text node through javascript

2007-10-15 Thread juninbox
Hi folks, My code as following: var svgns = "http://www.w3.org/2000/svg";; //Step 1: create one lable var dat= svgDoc.createTextNode("I am one rect"); var t = svgDoc.createElementNS(svgns,"text"); t.setAttributeNS(null,"x",6); t.setAttributeNS(null,"y",20);