[svg-developers] Getting text vale out of a text element.

2004-10-22 Thread Dale Ellis
Hi I want to get the text value out of the text element. I have done the below to get teh textData Node var textData = textObj.getFirstChild() how can i get it from this? Yahoo! Groups Sponsor ~-- $9.95 domain names from Yahoo!. Register

RE: [svg-developers] Re: source for Chris Peto SVG editor/run locally

2004-10-22 Thread Chris Peto
Hi, The php and apache are needed to write/read from the harddrive. If you plan on not read and writing then is will work without the server and php, which is pretty useless. Mit freundlichen Grüßen/Regards Chris Peto Freelance System Development, Resource Solutions Founding Partner,

[svg-developers] Re: Getting text vale out of a text element.

2004-10-22 Thread Alastair Fettes
Here is an alternative (if you want to avoid getting the textData Node): var textString = textObj.selectSubString( 0, textObj.getNumberOfChars() ); Cheers, Alastair --- In [EMAIL PROTECTED], Jérôme Tricand de la Goutte [EMAIL PROTECTED] wrote: Just do myVar=textData.data or

[svg-developers] Re: shortest-path in map using svg

2004-10-22 Thread ysanthi83
Hi, i am new to this yahoogroup. Just would like to tell you something regarding the shortest path. Actually there are many algorithm for the shortest path. There is one algorithm called A-*(A Star). This algorithm also mainly use in gaming. Unfortunately, all the code i found also written

Re: [svg-developers] Turkish Encoding Problem

2004-10-22 Thread Chris Lilley
On Thursday, October 21, 2004, 8:44:49 PM, Levent wrote: LD Dear All, LD I have a problem with displaying Turkish characthers on SVG. The LD following alternatives did not work. Can you give mere detail on 'did not work'? Did it a) give a well formedness error b) display the wrong glyphs c)

Re: [svg-developers] fePointLight animation along path ?

2004-10-22 Thread Chris Lilley
On Friday, October 22, 2004, 1:42:17 PM, andré wrote: amw hi, amw i was wondering if it is possible to apply an animation along a path in amw the x an y attributes of fePointLight. Not directly, no. amw animateMotion/mpath needs an element that supports transformations (i amw guess so), but

[svg-developers] Xform + SVG

2004-10-22 Thread ana_rubia_zr
Hello developers! Thanks for Jérôme and Heiko! Works! I was studing XForm, RCC and I thought this is the way to send informations of SVG to xml form page, or another form. Do you have any simple example? I´ll use this SVG document: ?xml version=1.0 standalone=no? !DOCTYPE svg PUBLIC

[svg-developers] Audio on SVG

2004-10-22 Thread techitoutuk
How can you put audio clips on SVG? Tony Bell Yahoo! Groups Sponsor ~-- $9.95 domain names from Yahoo!. Register anything. http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/1U_rlB/TM

Re: [svg-developers] Audio on SVG

2004-10-22 Thread Chris Lilley
On Saturday, October 23, 2004, 12:52:46 AM, techitoutuk wrote: t How can you put audio clips on SVG? http://www.w3.org/TR/SVG12/#audio-element -- Chris Lilleymailto:[EMAIL PROTECTED] Chair, W3C SVG Working Group Member, W3C Technical Architecture Group

[svg-developers] Handling Different Screen Resolutions?

2004-10-22 Thread tbone58x
I written some programs to generate SVG output and am always using the followng lines of code: svg width=1000 height=600 rect x=0 y=0 width=1000 height=600 style=fill:khaki/ So if I want to center TEXT in the middle of screen down 100 pixels (I always use Pixels) I would use TEXT x=500 y=100