Re: [svg-developers] accessing children nodes inherited from defs

2005-02-04 Thread =?ISO-8859-1?Q?J=E9r=F4me_Tricand_de_la_Goutte?=
Hi Aashish Once you've describe an object in defs section, here Gr, it is considered as one single element. So, when you use it by use element, you can't access to any child of this object. On the other hand, in your example, if you change some attribute of the rect of Gr, it will impact any

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

2005-02-04 Thread =?ISO-8859-1?Q?J=E9r=F4me_Tricand_de_la_Goutte?=
hello Burkhard. I don't have too much time now, i'm sorry The main issue for this problem is handling the mouse. You must detect onmousedown event, memorize it and the object on which you've clicked, then react to onmousemove by moving the object, until onmouseup is detected. The onmousemove

[svg-developers] svg viewer for .NET

2005-02-04 Thread friedhelmeichin
We have to build a ms windows application, which should view a svg graphic and dynamically change some svg elements as well as process events at runtime. Which is the favorite svg viewer for builing now such a comercial .Net windows application? Is SVG the right technologie for this or

[svg-developers] servlet and getURL()

2005-02-04 Thread rapture_soon2002
I need a eg Hi guys, I'm trying to implement a very simple getURL (SVG) to pull sensor data from a servlet and display it every millisec or so. Below is a sketchy idea of what I have in mind. How I can I implement a simple getURL()? Will it be something like svg ... script

Re: [svg-developers] servlet and getURL()

2005-02-04 Thread =?ISO-8859-1?Q?=22Andr=E9_M=2E_Winter_-_Carto=2Enet=22?=
http://www.carto.net/papers/svg/samples/get_parse.shtml -- ___ andre m. winter, cartography for internet and multimedia applications a6091 goetzens, tyrol, austria tel.: ++43.5234.32732 email: [EMAIL PROTECTED]

[svg-developers] Re: servlet and getURL()

2005-02-04 Thread Andreas Neumann
Hi, if you want to load and display data every millisec, than SVG is probably not the right tool. I don't know how fast it can update and load data, but I guess it is only once or a handful times per second. But that depends on your clients processor and network speed. One millisec update

[svg-developers] Re: Travel map No 2

2005-02-04 Thread jololivier
Hello, Searching for aSVG worldmap, I find yours. The new version is more precise and complete than the first one, but some data have disapear : Macau and Hong-kong are not present in the new version, while they are in the first one. Is there a possibility to add them? Thanks a lot, Jérôme

[svg-developers] Fwd: Help! HK police using brain voice read-write machine murder HK people.

2005-02-04 Thread chan wilson
Fwd: Help! HK police using brain voice read-write machine murder HK people. The Internet is the power, attacks the Hong Kong terrorist to needs the world people power. Please forward the email, the group, the Message Board, icq and the Hong Kong government, thanks my dear friend. Dear

[svg-developers] Fwd: One US Dollar Education Plan.

2005-02-04 Thread chan wilson
fwd: One US Dollar Education Plan. Joins the world Internet education movement: odep.why.to One US Dollar Education Plan The Internet current is enormous and powerful, along it prosperous, against it perishes, the government and all professions moves to the Internet,is the inevitable

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

2005-02-04 Thread Philippe Lhoste
Jérôme Tricand de la Goutte wrote: hello Burkhard. I don't have too much time now, i'm sorry The main issue for this problem is handling the mouse. You must detect onmousedown event, memorize it and the object on which you've clicked, then react to onmousemove by moving the object, until

Re: [svg-developers] Re: Travel map No 2

2005-02-04 Thread Philippe Lhoste
jololivier wrote: Searching for aSVG worldmap, I find yours. The new version is more precise and complete than the first one, but some data have disapear : Macau and Hong-kong are not present in the new version, while they are in the first one. Is there a possibility to add them?

Re: [svg-developers] SVG Element

2005-02-04 Thread Peter Thompson
It is a DOCTYPE declaration. Paraphrasing from SVG Unleashed, a document type definition defines the permitted structure of an SVG document, and, you may not need the DOCTYPE declaration if, for example, your browser recognizes an svg file by the file extension. It also states that it is

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

2005-02-04 Thread Doug Schepers
Thanks for the kind words, Philippe. As you said, it's a pretty trivial problem, unless I'm misunderstanding something. I made a slight alteration to my sample, to show how to move groups: http://svg-whiz.com/svg/DragAndDropGroup.svg Regards- Doug doug . schepers @ vectoreal.com

[svg-developers] Re: servlet and getURL()

2005-02-04 Thread Peter Thompson
This was discussed here not too long ago, so it should be easy to find the thread. The consensus was that you couldn't expect to be getting data via getURL() more than a few times a second. It doesn't mean it can't be done, just not the way that you suggested. If you want to use getURL(),

[svg-developers] Re: servlet and getURL()

2005-02-04 Thread rapture_soon2002
Ok guys - I'll be less ambitious; I'll choose an update rate of 500ms. I'm show getURL can handle this --- In svg-developers@yahoogroups.com, rapture_soon2002 [EMAIL PROTECTED] wrote: I need a eg Hi guys, I'm trying to implement a very simple getURL (SVG) to pull sensor data from a

RE: [svg-developers] Re: servlet and getURL()

2005-02-04 Thread Rick Bullotta
That should be fine. Buffer your data on the server side and chunk it down, and you should be OK. -Original Message- From: rapture_soon2002 [mailto:[EMAIL PROTECTED] Sent: Friday, February 04, 2005 9:18 AM To: svg-developers@yahoogroups.com Subject: [svg-developers] Re: servlet and

Re: [svg-developers] svg viewer for .NET

2005-02-04 Thread Jeff Rafter
Which is the favorite svg viewer for builing now such a comercial .Net windows application? We are using SharpVectorGraphics. I have currently been enhancing the interactivity portions of the library with the help of a couple of others. The development is being supported by a company in

Re: [svg-developers] accessing children nodes inherited from defs

2005-02-04 Thread Jeff Rafter
For the object defined by ElementId = U1, is there a way to access the inherited children from Gr. Meaning, is access to U1's rectangle child or U1's text child allowed. svgdoc.getElementById(U1).childNodes doesn't give any elements. Right, you have to get the use element's InstanceRoot

Re: [svg-developers] Re: Performance problem

2005-02-04 Thread Ryan Christianson
I'm curious if you can just avoid calling removeChild. Here are some alternatives: - set the display attribute to none this will make it not visible - call appendChild on another element this will remove from current location and put in the new location. You could make a document fragment, call

Re: [svg-developers] svg viewer for .NET

2005-02-04 Thread jdowdell
At 1:08 AM 2/4/5, friedhelmeichin wrote: Which is the favorite svg viewer for builing now such a comercial .Net windows application? ?? .NET usually runs on the server (depending on whether you include the CLR in your definition), and SVG is usually rendered in the web browser, true...? XAML

[svg-developers] Re: svg viewer for .NET

2005-02-04 Thread scasquiov
Hi, ?? .NET usually runs on the server (depending on whether you include the CLR in your definition), and SVG is usually rendered in the web browser, true...? (...) You can generate SVG-style XML with many types of server software. Once you've got a valid SVG file, then it should be

[svg-developers] Change Mouse Pointer in SVG

2005-02-04 Thread renatonow
Hi: Is there a way to dynamically change the mouse pointer from the Arrow to a Hand or a Cross..? Thanks Renato F. Salas - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click edit my membership Yahoo! Groups

[svg-developers] SVG#, examples and interactivity

2005-02-04 Thread scasquiov
Where might I find examples and/or documentation on SharpVectorGraphics? I will be using it to show an SVG in my C# app but I will also need some interaction. For example, when clicking a certain element it should become highlighted by changing its color. I've read about this being possible

[svg-developers] Re: Change Mouse Pointer in SVG

2005-02-04 Thread Aashish Singhvi
See: http://www.w3.org/TR/SVG/interact.html#CursorProperty cursor attribute is not supported on ASV 3.x but is supportd in ASV6. Sorry, don't know about other browsers. Someone on this mailing had suggested a basic hack which would work in current implementations. Add a wrapper a /a tag

Re: [svg-developers] SVG#, examples and interactivity

2005-02-04 Thread Jeff Rafter
Where might I find examples and/or documentation on SharpVectorGraphics? I will be using it to show an SVG in my C# app but I will also need some interaction. For example, when clicking a certain element it should become highlighted by changing its color. I've read about this being possible

[svg-developers] Mozilla getStyle GetStyleData JavaScript etc

2005-02-04 Thread couloir007
The Code below apparently is an Adobe specific way of setting fill color. I believe GetStyleData would be the Mozilla equivalent. Not sure though since I can't get it to work. Does anyone know how to do this in Mozilla? I've had some limited success altering CSS attributes, but would like to