[svg-developers] svg2png

2007-09-02 Thread Holger Wll
Hi folks i finally found some time for programming and SVG again. just dropping by to say hi to everyone, and to let you know about my latest project. its an svg2png converter for firefox3. you can find the first test version here: http://www.treebuilder.de/default.asp?file=66.xml with this

[svg-developers] Re: Stumped by Firefox

2006-10-13 Thread Holger Wll
Hi A 250 -48 0 0 0 -234.32 16.72 ... ^^^ Firefox does not allow negative radii. try it with positive radius and all looks fine in FF. cheers Holger - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click edit my

[svg-developers] Re: SVG 1.1 Layers : Help needed

2006-10-11 Thread Holger Wll
--- In svg-developers@yahoogroups.com, mostwantedsince198x [EMAIL PROTECTED] wrote: Hi Now we are trying to implement a new functionality, which is helpful for theme designers.Instead of editing svg files individually , we thought of collecting multiple SVG files and generate a single

[svg-developers] Re: SVG authoring - web based applications

2006-10-11 Thread Holger Wll
Hi Jonathan i dont have much time currently, but im working on a personal long time project in my spare time. its a xul based SVG editor. for that i have some shape editors, which ive tested in Firefox , Opera and Batik. i would be willing to contribute these for a webbased editor, if you

[svg-developers] Re: GetElementById on foreign elements in Firefox/ASV/Opera

2006-09-13 Thread Holger Wll
Hi Alan in Firefox and Opera you can implement getElementById yourself with the DOM3 Xpath evaluate method. the statement would look something like this: document.evaluate(//xyz:*[id='bat1'], document, NSResolver, XPathResult.ANY_TYPE, null)) for more details see:

[svg-developers] Re: GetElementById on foreign elements in Firefox/ASV/Opera

2006-09-13 Thread Holger Wll
Hi here is an example of how it may look like: http://www.treebuilder.de/svg/evaluate.svg click on the rect to test. cheers Holger - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click edit my membership

[svg-developers] Re: 'Native' SVG support in Opera and FF

2006-09-12 Thread Holger Wll
Hi Lance that extension was build only using a text editor. i have some build script which packes the extension. as you allready found out both the xpi and the jar file are only renamed zips. the code is very messy currently. but if you like to hack on it anyways, i'm willing to send you my

[svg-developers] Re: 'Native' SVG support in Opera and FF

2006-09-11 Thread Holger Wll
Hi * Is there even a way to pan or zoom in FF? you could use my Zoom and Pan Extension, which can be found here: http://www.treebuilder.de/zoomAndPan/index.htm its still in an early version, and i dont have much time to update it currently, but you can give it a try ;-) cheers Holger

[svg-developers] Re: relative element positioning

2006-08-30 Thread Holger Wll
--- In svg-developers@yahoogroups.com, Nazar [EMAIL PROTECTED] wrote: Hello, I use DOM to add some of the elements to SVG. Currently I use element.setAttribute(x, _x); to position element absolutely. What I am interested in is how to position elements relative to its parent element ?