[svg-developers] Re: Ann: eSVG 2.4 released

2006-02-08 Thread Andreas Neumann
you can download the regular version and in the custom setup select only the viewer, as far as I know. Well, the registration is not so much of a pain. I am a registered user and did not get bothered because of this registration. I think eSVG is a very good toolset. It has a very useful

[svg-developers] SVG and Mouse over Effect

2006-02-08 Thread swapnil06
My need is to show inside svg a AutoCad map and when i move my mouse pointer on an object i need to get the information of it. The svg page should be divided into two halfs one for the autocad map and one for the information of the object on the map on mouseover can anybody help me as soon as

[svg-developers] Passing data betwwen SVG docs

2006-02-08 Thread chmavrog
Hi everyone! I am new to SVG,and at the moment i am building a GUI for an application that someone could use in order to constact UML diagrams. i am using SVG,EcmaScript and php as technologies. I have seen there are many libraries of widgets (windows,listboxes etc) My question is this If i

[svg-developers] Re: SVG and Mouse over Effect

2006-02-08 Thread domenico_strazzullo
--- In svg-developers@yahoogroups.com, swapnil06 [EMAIL PROTECTED] wrote: My need is to show inside svg a AutoCad map and when i move my mouse pointer on an object i need to get the information of it. The svg page should be divided into two halfs one for the autocad map and one for

Re: [svg-developers] Re: SVG and Mouse over Effect

2006-02-08 Thread deshmukh swapnil
Hi, Thanks for the reply but the Map is made by using SVG it is not an Autocad file but the drawing which we are making with the help of svg is some what an autocad drawing. All the co-ordinates are stored in database and from database i create that drawing with the help of svg. But my problem is

[svg-developers] get screen size in batik squiggle browser

2006-02-08 Thread sent1729
Hi all, Is it possible to get the windows screen size(width and height in pixles), in batik squiglle browser. For ex: in IE using javascript we can say screen.width and screen.height to access the windows screen size information, is there an equivalent command in batik? Any help is

[svg-developers] Re: get screen size in batik squiggle browser

2006-02-08 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, sent1729 [EMAIL PROTECTED] wrote: Is it possible to get the windows screen size(width and height in pixles), in batik squiglle browser. For ex: in IE using javascript we can say screen.width and screen.height to access the windows screen size

[svg-developers] Re: SVG and Mouse over Effect

2006-02-08 Thread Jeff Schiller
--- In svg-developers@yahoogroups.com, swapnil06 [EMAIL PROTECTED] wrote: My need is to show inside svg a AutoCad map and when i move my mouse pointer on an object i need to get the information of it. The svg page should be divided into two halfs one for the autocad map and one for the

Re: [svg-developers] Re: use tag and unique IDs

2006-02-08 Thread Sean
Hi Alastair, Thanks for the input. I figured as much with the id, but getElementByName didn't work either. I was hoping that something would work. I tried the childNodes and firstChild, but nothing works. objet.childNodes.length returns 0, which appears to mean that the child nodes under

Re: [svg-developers] Re: use tag and unique IDs

2006-02-08 Thread Sean
Does any one have examples of using SVGUseElement SVGElementInstance? Thanks. Sean Sean wrote: Hi Alastair, Thanks for the input. I figured as much with the id, but getElementByName didn't work either. I was hoping that something would work. I tried the childNodes and firstChild, but

Re: [svg-developers] Re: use tag and unique IDs

2006-02-08 Thread Sean
I should say navigate the use element. I realize that it is read only, but I can't figure out how to do that. Thanks. Sean wrote: Does any one have examples of using SVGUseElement SVGElementInstance? Thanks. Sean Sean wrote: Hi Alastair, Thanks for the input. I figured as much

RE: [svg-developers] Re: use tag and unique IDs

2006-02-08 Thread Peter Kalev
Why don't you wrap the use element in a g id=, search for the g and then look for the use inside the g... Works fine for me... Peter Kalev Senior Developer, SWF, LLC -Original Message- From: Sean [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 08, 2006 11:21 AM To:

Re: [svg-developers] Re: use tag and unique IDs

2006-02-08 Thread Sean
I can get the use tag, I want to be able to navigate the use tag. I have the use referencing a g tag with several elements under the g tag. I want to be able to navigate those elements. I'm coming to the conclusion that it can't be done. Sean Peter Kalev wrote: Why don't you wrap the use

RE: [svg-developers] Re: use tag and unique IDs

2006-02-08 Thread Peter Kalev
Yup, those guys are can be accessed easily, BUT when you modify them it will show everywhere you reference that def... Peter Kalev Senior Developer, SWF, LLC -Original Message- From: Sean [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 08, 2006 11:31 AM To:

Re: [svg-developers] Re: SVG and Mouse over Effect

2006-02-08 Thread becks xlover
HI, Me too I'm doing quite the same thing as you. What have i done is to insert the svg file in an xml document and then append the document to insert the following codes: text x=55 y=45 visibility=hiddentooltip set attributeName=visibility to=visible begin=path7.mouseover/ set

Re: [svg-developers] RE: Outline of ellipse

2006-02-08 Thread Fulio Pen
Thank everyone who offered help. I did two paths with elliptical arc. It worked. http://www.pinyinology.com/svg/ellipse1.svg SVG is a great technology. I hope it will be fully supported on all major browsers. I also hope that not only professional computer programmers, but also

Re: [svg-developers] Re: use tag and unique IDs

2006-02-08 Thread Jeff Rafter
Sean, It can be done, it just has to be done differently in each browser. Try this code inside of your event: var target = evt.target; var use = null if (target == null) return; if (target.correspondingUseElement) use =