Re: [svg-developers] animate 2 arms

2005-02-03 Thread =?ISO-8859-1?Q?J=E9r=F4me_Tricand_de_la_Goutte?=
Hi jilu, If I understand well, you want to kepp l1 and l2 attached... If so, use a structure like g id=FirstRotation transform=your rotation string for L1 ... description of l1 g id=SecondRotation transform=your rotation string for L2 ... description of l2

[svg-developers] How to pass data from an servlet to a svg-dokument with get-url ?(example only working partially)

2005-02-03 Thread chris78st
My example fails although the files are on the same server and urlRequestStatus.success == true. How can I set the output? For example I just want a String to be sent back with the value test and retrieve it with urlRequestStatus.content Thanks for your consideration! Client: SVG-Side function

RE: [svg-developers] How to pass data from an servlet to a svg-dokument with get-url ?(example only working partially)

2005-02-03 Thread Chris Peto
Hi, Looks to me like your doGet is not geting called. Mit freundlichen Grüßen/Regards Chris Peto Freelance System Development, Resource Solutions Founding Partner, Vectoreal --- Frankfurt, Germany Mobile: +49 (0) 173 308 7843 Tel:+49(0) 6103 80 21 98 Web:

[svg-developers] Re: How to pass data from an servlet to a svg-dokument with get-url

2005-02-03 Thread chris78st
Hi Chris, It's getting called. But the line alert(urlRequestStatus.content) returns an alert box which is empty. I just don't know how to spefify a value in a servlet. for example I want to be test as a return from the response. PrintWriter out = response.getWriter(); out.println(test);

[svg-developers] Text dimensions

2005-02-03 Thread Narcis Vasiliu
It is a way to get the dimensions of a text (in milimeters) rendered by Adobe SVG Viewer? Thank you very much, Narcis Vasiliu __ Do you Yahoo!? Yahoo! Mail - now with 250MB free storage. Learn more. http://info.mail.yahoo.com/mail_250 -

[svg-developers] Drag and Drop for groups

2005-02-03 Thread Burkhard Stollenwerk
Hello, how could I move a group of elements like g rect.../ text...test/text /g and an other problem is the slowly accorat moveing, if I was out of element. Any solution , please told me friendly greeting Burkhard Stollenwerk - To unsubscribe send a message to: [EMAIL PROTECTED] -or-

Re: [svg-developers] Drag and Drop for groups

2005-02-03 Thread Burkhard Stollenwerk
you could see application at www.futurefarm.de/kuh2005/stallp.php Burkhard - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click edit my membership Yahoo! Groups Links * To visit your group on the web, go to:

Re: [svg-developers] Drag and Drop for groups

2005-02-03 Thread =?ISO-8859-1?Q?J=E9r=F4me_Tricand_de_la_Goutte?=
Hi Burkhard Just put your mouse events declaration on the group and not on the rect or text. Then, use evt.currentTarget to get the group and apply translation to the group. Hope it helps Jérôme Tricand de la Goutte Société Logatique 50 rue Marcel Dassault 92100 Boulogne-Billancourt 01 46

Re: [svg-developers] Drag and Drop for groups

2005-02-03 Thread Burkhard Stollenwerk
Thanks Jéróme, can you give me a example about this? Burkhard - Original Message - From: Jérôme Tricand de la Goutte [EMAIL PROTECTED] To: svg-developers@yahoogroups.com Sent: Thursday, February 03, 2005 10:31 AM Subject: Re: [svg-developers] Drag and Drop for groups Hi Burkhard

[svg-developers] Re: Performance problem while setAttribute(points) on polyline

2005-02-03 Thread welkerpaul
Faisal, relative stroking is supposed to process faster. If you suffer from performance problems you're dealing with complex drawings- guessing. In general, since the parsed dom eats up your machines ram, any optimization that reduces your drawings dom memory footprint might be worth

RE: [svg-developers] Save Drawing in mysql 4.1x database

2005-02-03 Thread =?iso-8859-1?Q?Barend_K=F6bben?=
That's interesting, I do at the moment have a student working on just that (only using Java instead of PHP). Our idea is to use an existing svg application where you can digitise a polygon , then using postURL in the SVG to get that SVG element to a servlet or JSP. This servlet then is going

[svg-developers] Re: Text dimensions

2005-02-03 Thread Aashish Singhvi
--- In svg-developers@yahoogroups.com, Narcis Vasiliu [EMAIL PROTECTED] wrote: It is a way to get the dimensions of a text (in milimeters) rendered by Adobe SVG Viewer? If you a text element looks like this in your svg element: text id=T1 x=100 y=100 style=font-size:10; stroke:black;

Re: [svg-developers] Save Drawing in mysql 4.1x database

2005-02-03 Thread Burkhard Stollenwerk
Thank Barend, thats the same way I will go. Only serversidelanguage is different. I ´ll use the function in 2 projects for farmers. dynamicly Mapping of agriculture-fields and cow-manageing project. Burkhard Stollenwerk Skype:nicefarmer [EMAIL PROTECTED] - Original Message - From:

[svg-developers] Slicing SVG

2005-02-03 Thread Peter Sparkes
Hi, I have a 5MB SVG map which covers a large area from which I want to generate maps covering small areas and of a few 10s of KBs. Does anyone know of any software which will cut out areas of SVG from the master map. Thank you. Peter - To unsubscribe send a message to: [EMAIL

[svg-developers] ANN: eSVG 2.2 with .NET support!

2005-02-03 Thread Damir Jezic
Hello Group, We are pleased to announce that our newest eSVG ( www.eSVG.com ) version supports .NET applications. Developers using the .NET framework can now use eSVG to embed flexible and powerful XML based vector graphics in their applications. This new version will help create a more

Re: [svg-developers] SVG and X3D in one breath

2005-02-03 Thread Robin Berjon
sara_j_porter wrote: Why is it that SVG is a W3C standard and X3D is an ISO standard? When you want to create a standard you have a lot of places to choose from. Web technologies are usually done within W3C, but there are some exceptions. The folks behind X3D in fact went with creating their

RE: [svg-developers] ANN: eSVG 2.2 with .NET support!

2005-02-03 Thread Damir Jezic
It is a wrapper around eSVG ActiveX component. Regards, Damir -Original Message- From: Rick Bullotta [mailto:[EMAIL PROTECTED] Sent: 3. veljaea 2005 15:05 To: svg-developers@yahoogroups.com Subject: RE: [svg-developers] ANN: eSVG 2.2 with .NET support! Is this native

[svg-developers] Re: Slicing SVG

2005-02-03 Thread Andreas Neumann
Hi Peter, One possible way would be to load the map data into a Postgis database and use the intersection method of postgis to clip out data. You can use a little script to automate the tiling. I did this once for a client and have a little perl script that does it. If you are interested

[svg-developers] Re: animate 2 arms

2005-02-03 Thread jilusan
André, This is exactly what i was looking for. Thanks a lot. Gil --- In svg-developers@yahoogroups.com, André M. Winter - Carto.net [EMAIL PROTECTED] wrote: hi jilu, i didn't fully follow this thread, but have you been at

[svg-developers] Polygon Rotation

2005-02-03 Thread pavan kumar
Hi, How can i rotate a polygon about one of its sides using svg transformations . This rotation has to be animated. Thanking u, S.Pavan Kumar __ Do you Yahoo!? Read only the mail you want - Yahoo! Mail SpamGuard.

[svg-developers] SVG performance - first time load vs Refresh

2005-02-03 Thread Aashish Singhvi
I am using IE6 with ASV 3.1. I am building a user-interface using SVG. One SVG file, calls one Javascript functions module and one (.css) style file. My SVG is 10 KB in size. When I open my SVG file name (there is no HTML wrapper) in IE, it takes approax. 3-5 seconds for the SVG to show up.

Re: [svg-developers] Re: Text dimensions

2005-02-03 Thread Philippe Lhoste
Narcis Vasiliu wrote: Thank you very much, Aashish. What is HTH? Google is your friend: http://www.google.fr/search?q=hth+ymmv+fyi+afaik For example: http://www.loganact.com/tips/afaik.html HTH :-P -- Philippe Lhoste -- (near) Paris -- France -- http://Phi.Lho.free.fr -- For servers

[svg-developers] Problm with getSVGDocument()

2005-02-03 Thread sudharshanks
Hi All, I've an SVG document embedded in an aspx page. I'm trying to access that SVG document from a javascript function in the same page. I'm using var svgDocument = document.embeds[0].getSVGDocument(); also tried var svgDocument = document.svgChart.getSVGDocument(); But the method

[svg-developers] Problm with getSVGDocument()

2005-02-03 Thread sudharshanks
Hi Again, I forgot to mention that i'm using Win XP SP1. Hoping i'll get a quick answer. Thanks again, Sudharshan --- In svg-developers@yahoogroups.com, sudharshanks [EMAIL PROTECTED] wrote: Hi All, I've an SVG document embedded in an aspx page. I'm trying to access that SVG