[svg-developers] ask bout GeoClient or OpenMapSVGServer

2005-10-21 Thread memeharum
im new here. i take thesis bout SVG. but im still confuse about using OpenMapSVGServer and GeoClient to convert map to SVG file. is there anybody can help me? or maybe is there any other application to convert *.shp file? thx for your respons. im waiting. Yahoo!

[svg-developers] Re: Repeating Visibility animation.

2005-10-21 Thread Joshua Woodward
I am not sure where to put that in my code. I removed the visiblity from the style and changed repeatcount to repeatCount and it worked. Maybe I could put that towards the top in defs/defs? Thanks for the quick response. --- In svg-developers@yahoogroups.com, Francis Hemsher [EMAIL PROTECTED]

Re: [svg-developers] ask bout GeoClient or OpenMapSVGServer

2005-10-21 Thread Olaf Schnabel
Hi memeharum take a look at http://www.carto.net/papers/svg/utils/shp2svg/ Ciao Olaf memeharum wrote: im new here. i take thesis bout SVG. but im still confuse about using OpenMapSVGServer and GeoClient to convert map to SVG file. is there anybody can help me? or maybe is there any other

RE: [svg-developers] ask bout GeoClient or OpenMapSVGServer

2005-10-21 Thread Armin Mueller
Memeharum, If you use ArcView or ArcGIS you can also give MapViewSVG (http://www.mapviewsvg.com) a try. Armin Mueller --- uismedia Max-Lehner Straße 18 85354 Freising Germany Tel: ++49 (0)8161/23 28 70 Fax: ++49 (0)8161/23 28 74 e-Mail: [EMAIL PROTECTED] http://www.uismedia.de -Original

[svg-developers] Re: SVG Pie Charts in a PDA

2005-10-21 Thread acl_svg
When we wrote the last message, we didn't know how to carry out the idea. Now, we have done it. To represent the Pie Chart we use lines (L command) instead of use arcs (A command). This representation is accepted on PDAs. An example: path id=sector0 d=M 0,0 L 100.0,0.0 L

RE: [svg-developers] Re: SVG Pie Charts in a PDA

2005-10-21 Thread Doug Schepers
Hi, ACL- Yow! That may display on a PDA, but the transmission time would be a killer. Why not use a bezier curve, like a Q or a C? Here's that same shape (more or less) described using a bezier: path d=M0,0 L99.5,0 Q99,54 52,85.5 Z/ I did that by hand, but it's really not that hard to

Re: [svg-developers] Re: Find differences between 2 versions of a chart

2005-10-21 Thread Christophe Strobbe
Hi, At 22:31 20/10/2005, simonshutter wrote: --- In svg-developers@yahoogroups.com, Bram [EMAIL PROTECTED] wrote: Hi, Does anyone know about a program that finds and highlights the differences between two versions of an SVG chart? (...) Bram. Bram, if you are talking about a

[svg-developers] Sparkle Designer List

2005-10-21 Thread AndrewWatt2001
Microsoft's Sparkle design tool attracted some interest on this list a week or two back. I have set up the Sparkle Designer mailing list. If you are interested, you can simply send an email to [EMAIL PROTECTED] and reply to the confirmation email. Further information about the list is

Re: [svg-developers] MAX2005: Some Flash stuff ...and something about the Ele...

2005-10-21 Thread AndrewWatt2001
Ronan, Avalon is now Windows Presentation Framework. The link didn't have much meat about why the Macromedia CEO isn't scared of Sparkle, I note. I wonder if he had a solid-fronted podium so that the audience couldn't see his knees knocking? :) Andrew Watt In a message dated

Re: [svg-developers] MAX2005: Some Flash stuff ...and something about the Ele...

2005-10-21 Thread AndrewWatt2001
Mini-oops! I should have said that Avalon is now Windows Presentation Foundation. Andrew Watt In a message dated 21/10/2005 11:57:18 GMT Daylight Time, [EMAIL PROTECTED] writes: Ronan, Avalon is now Windows Presentation Framework. The link didn't have much meat about why the

Re: [svg-developers] MAX2005: Some Flash stuff ...and something about the Ele...

2005-10-21 Thread Ronan Oger
Andrew, [irrelevant] WPF. s/P/T/ ? ;-) Well, it was a keynote. The future is great. Everything is fine. I agree, there was not much meat. Maybe the keynote transcript is published somewhere with more...? If so, I am sure our MM friends will happily pass it on to us. This is obviously a

[svg-developers] reg: tool tip

2005-10-21 Thread sakthidasang
hi guys, I am in need of a help regarding tooltip creation.herewith i have attached the code that would display the map along with some important cities.on placing the cursor to the cities i am in need of a tooltip to be displayed.Normally without any image at the backend i have the code for

Re: [svg-developers] MAX2005: Some Flash stuff ...and something about the Ele...

2005-10-21 Thread david dailey
At 07:25 AM 10/21/2005, Ronan wrote: I wonder increasingly if our little world won't realign itself from SVG vs MM to SVG + MM vs WMF. I think if I were calling the shots for Adobe I would make SVG and Flash as allied and integrated as possible. If I were calling the shots for Microsoft, I

RE: [svg-developers] MAX2005: Some Flash stuff ...and something about the Ele...

2005-10-21 Thread Doug Schepers
Perhaps it's optimistic of me, but I keep thinking that one of the goals of SVG was to be a vector-graphics interchange format. Not a Flash-killer, not a Sparkle-desparkler, but as an open-standard shared medium that IDEs for each could export to. Sure, there are features that are specific to

RE: [svg-developers] MAX2005: Some Flash stuff ...and something about the Ele...

2005-10-21 Thread Jerrold Maddox
My view has been that SVGs potential is not as a Flash killer, but but a way to create documents that get the best out of XHTML, PDF and Flash - a very effective way to present information efficiently, appropriately and gracefully, which none of these three formats do now . What is wrong with

[svg-developers] Anchor in SVG - Atul

2005-10-21 Thread atul K
Hi I am new to SVG. I am generating SVG file from XML Data using the XSLT and sending the same to browser. I want to add the anchor to the text. when i add a tag it doesn't show anything on browser. if i remove the anchor tag it shows the rectangle but without href. if i use the saxon for

Re: [svg-developers] Anchor in SVG - Atul

2005-10-21 Thread Jeff Rafter
Atul, What is your target browser-- I think maybe Firefox could get close to displaying this but it would need some help. (1) Your result is a mixed HTML and SVG document... which is okay... but I would avoid including a DOCTYPE in such a case. Also, the SVG is not rendering as SVG per se...

RE: [svg-developers] Anchor in SVG - Atul

2005-10-21 Thread Doug Schepers
Hi, Atul- In case you haven't seen it, there is an article on SVG-Wiki on the proper way to make inline SVG that works across browsers, in IE+ASV, and native FF and Opera [1]. From the looks of it, you are probably using it as a reference, so I think you are good there. From Jeff's analysis of

[svg-developers] Re: Building and saving compsite SVG images programatically.

2005-10-21 Thread world_shaper
Many thanks, Wade. Or is it G.? Anyway, your maze program is an excellent place for me to start. Thanks for sharing it. Coincidentally, I did concerns about memory, so I'll definitely look into the use/ element. Just out of curiosity, how complex is the perl script that generates the

[svg-developers] Re: Building and saving compsite SVG images programatically.

2005-10-21 Thread world_shaper
David, Thanks for the examples. Along with the one that Wade (or is it G.?) posted, I think I have a really good place to start. Also, the resources on your website look to be very useful. Thanks for the help! I am sure I will be posting a LOT more as I start working on this. Thanks

[svg-developers] SVG + XHTML + VoiceXML

2005-10-21 Thread sonomrdj
Hello, I'm new here and I hope to have searched well this forum before posting. I'm doing a thesis in the italian university of Brescia about multimodal applications. My problem is that I have an SVG app with Javascript embedded in the .svg file in this way: script id=1

Re: [svg-developers] Re: Heresy - Convert svg to jpg?

2005-10-21 Thread Andreas Steichardt
On Thursday 20 October 2005 20:07, simonshutter wrote: --- In svg-developers@yahoogroups.com, Jeff Rafter [EMAIL PROTECTED] wrote: Hi! Simon, In addition to the toolkits mentioned, this is also possible using SharpVectorGraphics-- it has support for use, but no scripting currently--

[svg-developers] internal stylesheets, class

2005-10-21 Thread Neiderer, Andrew \(Civ, ARL/CISD\)
I just started working with internal stylesheets and classes. The SVG generated by my java program works for displaying mediumBlue and green, but does not display the other rects, e.q. the red rectangles. I can't figure out why unless it is hidden below the gray when I try to look at it

Re: [svg-developers] reg: tool tip

2005-10-21 Thread P Trisnadi
You may wanna check out Doug Schepers' code at: http://svg-whiz.com/svg/Tooltip.svg I tweaked his code a bit for my need and you can check it out at: http://homepage.mac.com/ptrisnadi/tooltip/Test03.html I hope this is what you need. Good luck! - ptrisnadi - Original

[svg-developers] Re: internal stylesheets, class

2005-10-21 Thread Alastair Fettes
Please post an example. Thanks. Alastair --- In svg-developers@yahoogroups.com, Neiderer, Andrew \(Civ, ARL/CISD\) [EMAIL PROTECTED] wrote: I just started working with internal stylesheets and classes. The SVG generated by my java program works for displaying mediumBlue and green, but

Re: [svg-developers] MAX2005: Some Flash stuff ...and something about the Ele...

2005-10-21 Thread John Dowdell
[EMAIL PROTECTED] wrote: The link didn't have much meat about why the Macromedia CEO isn't scared of Sparkle, I note. I wonder if he had a solid-fronted podium so that the audience couldn't see his knees knocking? :) People were actually walking around on the stage, no podium. ;-) (I

[svg-developers] Re: Heresy - Convert svg to jpg?

2005-10-21 Thread simonshutter
--- In svg-developers@yahoogroups.com, Andreas Steichardt [EMAIL PROTECTED] wrote: I would give inkscape (http://www.inkscape.org) a try. It has commandline options to convert SVGs. Kind regards, Andreas Streichardt Thanks Andreas. Inkscape only exports to png (bitmap), correct?

Re: [svg-developers] Re: Building and saving compsite SVG images programatically.

2005-10-21 Thread G. Wade Johnson
Hi Matt, On Fri, 21 Oct 2005 16:51:16 - world_shaper [EMAIL PROTECTED] wrote: Many thanks, Wade. Or is it G.? Anyway, your maze program is an I go by Wade. I just sign things G. Wade. excellent place for me to start. Thanks for sharing it. Coincidentally, I did concerns about