Re: [svg-developers] Re: slider for Firefox native SVG (that still runs in ASV3)

2005-08-03 Thread Holger Will
meikelneu schrieb: --- In svg-developers@yahoogroups.com, Holger Will [EMAIL PROTECTED] wrote: could you or anyone else check out the examples from this article ? http://blog.treebuilder.de/pivot/entry.php?id=10#body tested with OSX 10.4.2, ASV3, Safari works: yes/no

Re: [svg-developers] Calling script in an SVG embed from containing HTML

2005-08-03 Thread Cameron McCormack
Doug Schepers: Sadly, this has always been a bit of a bugaboo. It does work in IE+ASV3, but not in FF+ASV6pr1, or I'll bet in Linux at all. I don't know if it works in Deerpark. Oh, that's a shame. So there's actually no way to have cross-platform (ASV in either IE/MozWindows/MozLinux)

Re: [svg-developers] Calling script in an SVG embed from containing HTML

2005-08-03 Thread Holger Will
Cameron McCormack schrieb: Doug Schepers: Sadly, this has always been a bit of a bugaboo. It does work in IE+ASV3, but not in FF+ASV6pr1, or I'll bet in Linux at all. I don't know if it works in Deerpark. Oh, that's a shame. So there's actually no way to have cross-platform (ASV in

[svg-developers] How To Make Money Fast And Easy, No Scam

2005-08-03 Thread huddyhud80
How to make money fast with only 6 DOLLARs! THIS REALLY CAN MAKE YOU EASY MONEY!! IT WORKS!!! A little while back, I was browsing through newsgroups, just like you are now, and came across an article similar to this that said you could make thousands of dollars within weeks with only

[svg-developers] hi

2005-08-03 Thread paul_evenblij
Mail transaction failed. Partial message is available. [Non-text portions of this message have been removed] Yahoo! Groups Sponsor ~-- font face=arial size=-1a

[svg-developers] Re: Newbie SVG Developer

2005-08-03 Thread Raoul van Putten
Chris Serio wrote: Alot of good suggestions here guys but the bottom line is this... I'm very fluent in C/C++ so I'm more comfortable doing something overkill but fast than learning something new. I can't take the risk in investing my limited amount of time to learning something new

RE: [svg-developers] Re: Newbie SVG Developer

2005-08-03 Thread Chris Peto
Hi, Just Use Apache Foreign Object Processor (FOP) for svg-pdf, it works great and has svg examples with it. Mit freundlichen Grüßen/Regards Chris Peto Freelance System Development, Resource Solutions Founding Partner, Vectoreal - Germany Mobile: +49 (0) 173

[svg-developers] How to link views using element ID in SVG?

2005-08-03 Thread Ahmed Salman
Hi! I want to link to a particular view of SVG document by referring an element ID like a xlink:href=SVGDoc.svg#elementID. But IE 6.0 gives me the error message that it cannot find the file. Make sure the path is correct. However when I access a xlink:href=SVGDoc.svg, then browser links with the

Re: [svg-developers] How to link views using element ID in SVG?

2005-08-03 Thread Holger Will
Ahmed Salman schrieb: Hi! I want to link to a particular view of SVG document by referring an element ID like a xlink:href=SVGDoc.svg#elementID. But IE 6.0 gives me the error message that it cannot find the file. Make sure the path is correct. However when I access a

Re: [svg-developers] How to link views using element ID in SVG?

2005-08-03 Thread Thomas DeWeese
Holger Will wrote: Ahmed Salman schrieb: I want to link to a particular view of SVG document by referring an element ID like a xlink:href=SVGDoc.svg#elementID. you would use a view Element or the svgView keyword like this: MyDrawing.svg#svgView(viewBox(0,200,1000,1000)) for detaild

Re: [svg-developers] How to link views using element ID in SVG?

2005-08-03 Thread Holger Will
Thomas DeWeese schrieb: Holger Will wrote: Ahmed Salman schrieb: I want to link to a particular view of SVG document by referring an element ID like a xlink:href=SVGDoc.svg#elementID. you would use a view Element or the svgView keyword like this:

[svg-developers] Export SVG to PDF

2005-08-03 Thread joseramartos
Hello: Is it possible to export an SVG graphic to PDF? Thank you Yours sincerelly José Ramón Yahoo! Groups Sponsor ~-- font face=arial size=-1a

[svg-developers] Re: Export SVG to PDF

2005-08-03 Thread jophof007
Hi, Search for FOP Apache in Google and you can convert SVG to XML. In Open-modeling we use it to print flowcharts. John --- In svg-developers@yahoogroups.com, joseramartos [EMAIL PROTECTED] wrote: Hello: Is it possible to export an SVG graphic to PDF? Thank you Yours sincerelly

[svg-developers] Re: Export SVG to PDF

2005-08-03 Thread joseramartos
Hi, Thanks, it's good, but i was searching something more simple, a program for to call in the shell or something like that. I'm developing a tool in perl and the output is several HTML pages with SVG graphics incrusted. I want to convert all these HTML pages with its graphics to a PDF

Re: [svg-developers] Re: Export SVG to PDF

2005-08-03 Thread Thomas DeWeese
joseramartos wrote: Thanks, it's good, but i was searching something more simple, a program for to call in the shell or something like that. The Batik rasterizer can be called from the command line to convert a single SVG file to a PDF with one page. I'm developing a tool in perl

[svg-developers] how to send client request to server in SVG

2005-08-03 Thread deeti_dave
Hi There, I am using SVG, Javascript with dsp objects (dsp-server page scripting language). Now, I have to grab data from svg graph, which user can change, to the server for inserting into database. I have to find a way to communicate with server from svg file. I have to send two whole

[svg-developers] Calling a script in an SVG embed from containing HTML

2005-08-03 Thread hai_va
Hi everyone! Can anyone tell me how to call a javascript function in svg document embed in a html document from html script? Exsample, Is that true? In HTML document: --- html head script type=text/javascript function html_script() { svg_script(); } /head