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

2005-02-04 Thread scasquiov
Jeff, Thanks for the reply. I will probably need to use the transform functions but not just yet. Meanwhile, rendering was taking to long so I made a little digging :) ended up making a minor change with a performance gain of at least 500% in rendering my test SVG :) It would be great if y

[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

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 poss

[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 " " tag around

[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 (no

[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 L

[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 shou

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

Re: [svg-developers] Polygon Rotation

2005-02-04 Thread Ryan Christianson
I think you have to put it in a group () element, then use the transform attribute. On Fri, 4 Feb 2005 08:16:45 -0800 (PST), pavan kumar <[EMAIL PROTECTED]> wrote: > > Hi, > > How can i rotate a polygon about one of its sides > using svg transformations . > > Thanking u, > S.Pavan Kumar >

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, cal

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 element's InstanceRo

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 Col

[svg-developers] Polygon Rotation

2005-02-04 Thread pavan kumar
Hi, How can i rotate a polygon about one of its sides using svg transformations . Thanking u, S.Pavan Kumar __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com ---

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 ge

[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

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

2005-02-04 Thread Rick Bullotta
Bad idea. Wrong technologies for the application. - Rick 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. - To unsub

[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(), y

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 www.vectoreal

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 wise

[svg-developers] onzoom event fires twice on keyboard control ?

2005-02-04 Thread Jean-David Benamou
Hi, I am using ASV From my experiments the onzoom event fires twice when the zoom is triggered by the keyboard control + mouse click and ony once when I change the doc.currentScale in the javascript. Can somebody help me ? Thanks JD - To unsubscribe send a message to: [EMAIL PROTECTE

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] 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, u

[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 matter

[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 frien

[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] 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 t

[svg-developers] SVG Element

2005-02-04 Thread alvin w
Hi guys, I find http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd";> in most of the svg file. Could anyone tell me what is the meaning and purpose of this element? Can it be deleted? Thank for you help - Do you Yahoo!? Yahoo! Mail

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

2005-02-04 Thread =?ISO-8859-1?Q?=22Andr=E9_M=2E_Winter_-_Carto=2Enet=22?=
-- ___ andre m. winter, cartography for internet and multimedia applications a6091 goetzens, tyrol, austria tel.: ++43.5234.32732 email: <[EMAIL PROTECTED]>

[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-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 shou

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 a

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 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 r