[svg-developers] Re: slider without using parseXML, is it possible? (Firefox native SVG)

2005-07-25 Thread jophof007
Hi you can easily replace parseXML like this: if (typeof parseXML=='undefined') { parseXML = function (cstring) { var parser = new DOMParser(); return ( parser.parseFromString( cstring, "text/xml") ) } } John Ophof http://open-modeling.sourceforge.net --- In svg-developers@yahoogroup

Re: [svg-developers] Re: slider without using parseXML, is it possible? (Firefox native SVG)

2005-07-25 Thread Holger Will
Holger Will schrieb: > meikelneu schrieb: > > > --- In svg-developers@yahoogroups.com, Holger Will <[EMAIL PROTECTED]> > > wrote: > > > > > > with the latest nightly built of Deer Park (20050722) your > > knop2.svg > > > > example also works on > > > > MacOSX as expected. Nevertheless with ASV3 on

Re: [svg-developers] Re: slider without using parseXML, is it possible? (Firefox native SVG)

2005-07-25 Thread Holger Will
meikelneu schrieb: > --- In svg-developers@yahoogroups.com, Holger Will <[EMAIL PROTECTED]> > wrote: > > > > with the latest nightly built of Deer Park (20050722) your > knop2.svg > > > example also works on > > > MacOSX as expected. Nevertheless with ASV3 on OSX I can't get > > > knop2.svg to wor

[svg-developers] Re: slider without using parseXML, is it possible? (Firefox native SVG)

2005-07-25 Thread meikelneu
--- In svg-developers@yahoogroups.com, Holger Will <[EMAIL PROTECTED]> wrote: > > with the latest nightly built of Deer Park (20050722) your knop2.svg > > example also works on > > MacOSX as expected. Nevertheless with ASV3 on OSX I can't get > > knop2.svg to work (tested > > with Firefox 1.06,

Re: [svg-developers] Re: slider without using parseXML, is it possible? (Firefox native SVG)

2005-07-23 Thread Holger Will
meikelneu schrieb: > --- In svg-developers@yahoogroups.com, Holger Will <[EMAIL PROTECTED]> wrote: > > > > > http://www.treebuilder.de/svg/guistuff/knob/knop2.svg > > > > it uses a simplyfied getScreenCTM implementation that behaves like > > > > root.getScreenCTM() > > > > > > That's good, but I c

[svg-developers] Re: slider without using parseXML, is it possible? (Firefox native SVG)

2005-07-22 Thread meikelneu
--- In svg-developers@yahoogroups.com, Holger Will <[EMAIL PROTECTED]> wrote: > > > http://www.treebuilder.de/svg/guistuff/knob/knop2.svg > > > it uses a simplyfied getScreenCTM implementation that behaves like > > > root.getScreenCTM() > > > > That's good, but I couldn't get it to work on the Mac

Re: [svg-developers] Re: slider without using parseXML, is it possible? (Firefox native SVG)

2005-07-19 Thread Holger Will
meikelneu schrieb: > --- In svg-developers@yahoogroups.com, Holger Will <[EMAIL PROTECTED]> > wrote: > > > sure its possible, the biggest problem right now is that > > getScreenCTM() is not implemented correctly in FF ( see bug : > > https://bugzilla.mozilla.org/show_bug.cgi?id=293224 ) (vote for

[svg-developers] Re: slider without using parseXML, is it possible? (Firefox native SVG)

2005-07-19 Thread meikelneu
--- In svg-developers@yahoogroups.com, Holger Will <[EMAIL PROTECTED]> wrote: > sure its possible, the biggest problem right now is that > getScreenCTM() is not implemented correctly in FF ( see bug : > https://bugzilla.mozilla.org/show_bug.cgi?id=293224 ) (vote for this bug!) > which you need to

[svg-developers] Re: slider without using parseXML, is it possible? (Firefox native SVG)

2005-07-18 Thread meikelneu
--- In svg-developers@yahoogroups.com, "Jim Ley" <[EMAIL PROTECTED]> wrote: > It's easy to add parseXML to Deer Park, just include this script: ... > but there's no reason why a slider needs the functionality. Thanks Jim for sharing this script. I am not sure if I can build a slider then, or make

[svg-developers] Re: slider without using parseXML, is it possible? (Firefox native SVG)

2005-07-18 Thread meikelneu
--- In svg-developers@yahoogroups.com, Jorg Heymans <[EMAIL PROTECTED]> wrote: > > meikelneu wrote: > > > Does anybody know if it is possible to built a slider with the > > functionality Firefox_1.1. will offer? It wouldn't have to be that > > universal as Kevin's but is it possible? > > Did you

[svg-developers] Re: slider without using parseXML, is it possible? (Firefox native SVG)

2005-07-18 Thread Jim Ley
"meikelneu" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > However, I am a big fan of Kevin Lindsey's slider. Since his slider > uses parseXML it will only run with the Adobe SVG plugin. It's easy to add parseXML to Deer Park, just include this script: if (!window.parseXML && Win