Re: [svg-developers] Re: printNode problem

2005-07-20 Thread Jorg Heymans
fgn.rm wrote: and the same problems on the id attribute of the svg tag (ie id=SVG - lots of quotes). Could someone test it on a pc? I work on a mac, maybe its a IE on the mac issue?? Works fine for me, using IE + asv3 on winxp. Regards Jorg - To unsubscribe send a message to:

[svg-developers] SVG 1.1 to SVGT 1.1 Transformation Tool!

2005-07-20 Thread Ahmed Suleman
Hi! Is there any tool which can transform the SVG 1.1 content (images + pages) into SVGT 1.1? Suleman [Non-text portions of this message have been removed] - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click edit my

[svg-developers] Re: CSS class alteration?

2005-07-20 Thread welkerpaul
Bart, that css alteration thing is a recurring issue if you've to style svgs client side. I do not see a sweeping solution to the issue. Well, the use of getElementsByTagName and setAttribute is probably a very lousy solution in terms of performance: getElementsByTagName returns you a

Re: [svg-developers] Uses for getBBox, getCTM, getScreenCTM and getTransformToElement

2005-07-20 Thread Antoine Quint
Hi Jonathan, On 20 juil. 2005, at 14:13, Jonathan Watt wrote: getBBox I use it all the time to query the bounding box of objects for layout purposes, drawing a tight bounding box when editing, etc. getCTM This one I don't use that much. getScreenCTM I use it all the time to

[svg-developers] possible customer for specialized CAD or DXF to SVG

2005-07-20 Thread steltenpower
I know a company that uses a specialized CAD that can also output to DXF to have it in a bit more mainstream format. This company uses DXF to PDF conversion to get the result in an even more mainstream format. However the files created in this way are really BIG, this together with the

[svg-developers] Re: possible customer for specialized CAD or DXF to SVG

2005-07-20 Thread bgeyer2000
Hi, I know some progamms which can convert in a batch-mode DXF-Files in SVG-Files, but your excample isn't very helpfull. The problems with such converting is the different interpretation of DXF-Files, so it would be better to do this test with a real-live-dxf. With one of the programms (uses

[svg-developers] Re: possible customer for specialized CAD or DXF to SVG

2005-07-20 Thread Alexander Adam
hi, [..] I have a sample DXF file to work with at http://steltenpower.com/SVGioPDF.dxf With this company having many subcontracters and more than a million customers a year i guess it could be an interesting customer Anybody interested? Show me an example. Have a look at

[svg-developers] Re: Gauss with rounded corner

2005-07-20 Thread Garry Haywood
you may also want add the x and y to the filter with negative amounts so you can see the full effect of the filter glad it worked for you Garry svg xmlns=http://www.w3.org/2000/svg; width=100% height=100% desc !-- put a description here -- /desc

Re: [svg-developers] Uses for getBBox, getCTM, getScreenCTM and getTransformToElement

2005-07-20 Thread Holger Will
Hi Jonathan getBBox things that come to mind are: - custom tooltips - zoom to a certain element ( part of a map ) - showing the selection of multible objects getCTM i used this in a lot of projects, but implemented properly, it is quite useless, i was wrongly using it instead of

RE: [svg-developers] possible customer for specialized CAD or DXF to SVG

2005-07-20 Thread Randy George
Hi, This outfit has some commercial translators you could probably try. http://www.savagesoftware.com/ I used their batch cad converter in the past for dwg files and it worked for my needs. The dxf/dwg format spans a large range of versions and features. It is very complex to

[svg-developers] Re: Uses for getBBox, getCTM, getScreenCTM and getTransformToElement

2005-07-20 Thread Alastair Fettes
Hi Jonathan, getBBox - a VERY useful DOM function. Holger is very right about this one. I wouldn't be able to do some of my widgets without it. A simple example of using it is a flowlayout widget. http://spark.sourceforge.net/resources/samples/afettes/flowlayout/flowlayout.svg getScreenCTM - I

[svg-developers] Stand-alone SVG Viewer

2005-07-20 Thread sent1729
Hi All, I am new to the SVG world. I have read some articles on SVG that says there are stand alone SVG viewers available, but I haven't come across one. I have tried viewers distributed as plug-in (Adobe SVG Viewer) but want some stand alone viewers. Any help would be greatly appreciated.

[svg-developers] SVG for GIS application

2005-07-20 Thread sent1729
Hi all, I have two questions: 1. Can anyone tell me how to convert GML to SVG format. I have read articles that says XSLT engine transforms GML to SVG but I dont know how to go about doing it? 2. Can I assign a coordinate projection to SVG viewport. In other words, after converting the GML

Re: [svg-developers] possible customer for specialized CAD or DXF to SVG

2005-07-20 Thread John Dowdell
steltenpower wrote: This company uses DXF to PDF conversion to get the result in an even more mainstream format. However the files created in this way are really BIG Yes, DXF can vary quite a bit, especially if you start with higher-order geometry (curves, turned into varying polygons for

[svg-developers] styling question

2005-07-20 Thread Bart
Hey all, Since SVG mirrors SVG in XML attributes, I expected document.getElementById(id).setAttribute('fill','#822'); ...to do the same as: document.getElementById(id).getStyle().setProperty('fill','#822'); However, the former doesn't work, and Batik dislikes the latter. So is there a

Re: [svg-developers] Stand-alone SVG Viewer

2005-07-20 Thread Bart
Batik, or more accurately its viewer, Squiggle, is the best known, implemented in java. See http://xml.apache.org/batik/ --Bart On 7/20/05, sent1729 [EMAIL PROTECTED] wrote: Hi All, I am new to the SVG world. I have read some articles on SVG that says there are stand alone SVG viewers

Re: [svg-developers] styling question

2005-07-20 Thread Holger Will
Bart schrieb: Hey all, Since SVG mirrors SVG in XML attributes, I expected document.getElementById(id).setAttribute('fill','#822'); ...to do the same as: document.getElementById(id).getStyle().setProperty('fill','#822'); However, the former doesn't work, and Batik dislikes the latter.

RE: [svg-developers] styling question

2005-07-20 Thread Peter Kalev
Why don't you set the style attribute as a whole Peter Kalev Senior Developer, SWF, LLC -Original Message- From: Bart [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 20, 2005 12:45 PM To: svg-developers@yahoogroups.com Subject: [svg-developers] styling question Hey all, Since SVG

Re: [svg-developers] styling question

2005-07-20 Thread Bart
On 7/20/05, Holger Will [EMAIL PROTECTED] wrote: Bart schrieb: Hey all, Since SVG mirrors SVG in XML attributes, I expected document.getElementById(id).setAttribute('fill','#822'); ...to do the same as: document.getElementById(id).getStyle().setProperty('fill','#822');

Re: [svg-developers] styling question

2005-07-20 Thread Bart
On 7/20/05, Peter Kalev [EMAIL PROTECTED] wrote: Why don't you set the style attribute as a whole That was my first consideration, yes. However, seeing as the implementation seems to call for two or three different statespaces for CSS state, (*insert grumble about the drugs the implementors

Re: [svg-developers] ,Protecting the Svg File

2005-07-20 Thread Muhammad usman
hi bart, can u tell me how to add a custom menu in ASV3 which does not include the copy and paste functionality. regards, Usman Bart [EMAIL PROTECTED] wrote: On 7/19/05, thequantimizer [EMAIL PROTECTED] wrote: Hi , Is there any way to protect your svg file , as on right click the user can

[svg-developers] Re: possible customer for specialized CAD or DXF to SVG

2005-07-20 Thread bgeyer2000
This outfit has some commercial translators you could probably try. http://www.savagesoftware.com/ The actual version works very slow for the *provided* Demo-DXF. I canceld the conversion after 2-3 Minutes. - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit