[svg-developers] batik and title element

2005-04-27 Thread idh_31
Hi all, I implemented a batik-based viewer in my java application to display SVG. Now I would like to add a tooltip whenever the mouse pointer is on a link element of the SVG, but for some reasons, neither the title nor the desc element seem to have any effect. I tried things like a

[svg-developers] Re: Problem installing Adobe SVG Viewer-urgent please

2005-04-27 Thread samcctan
THe version 6 seems to work alright (so far) in one of my machine. THanks folks for your advice. But I still having problem in installing ASV6 on my another machine which already being crashed by ASV3, apparently --- In svg-developers@yahoogroups.com, Jim Ley [EMAIL PROTECTED] wrote:

[svg-developers] Detecting Mouse Position

2005-04-27 Thread samcctan
Hi all, I am able to get my mouse position for my browser window (btw, I am using Firefox). At the same time, I embed a svg file in my html. But I realize when the mouse is in the svg image, the mouse position will not be detected! It only works when the mouse cursor is outside the svg

Re: [svg-developers] batik and title element

2005-04-27 Thread Jorg Heymans
try moving the title element as a sub element of the ellipse. idh_31 wrote: Hi all, I implemented a batik-based viewer in my java application to display SVG. Now I would like to add a tooltip whenever the mouse pointer is on a link element of the SVG, but for some reasons, neither the

[svg-developers] SVG Viewer for Opera 8

2005-04-27 Thread Armin Mueller
Hi, I have a question about SVG Viewers and Opera 8. Since version 8 Opera has now native SVG support, but only for SVG Tiny. Now i have the problem, that it is not possible for me to use SVG viewers as PlugIn. Opera alway use his native SVG. Has anyone experiences whether i can switch off the

RE: [svg-developers] SVG Viewer for firefox

2005-04-27 Thread Armin Mueller
Chris All Mozilla browsers still have problems with ASV 3. My experience is, that they display the SVG correctly, but if you want to change the URL in the window where the SVG is diplayed or you want to close this window then the browser crashs. Armin -Original Message- From:

[svg-developers] Re: batik and title element

2005-04-27 Thread idh_31
No, I am afraid this does not help... --- In svg-developers@yahoogroups.com, Jorg Heymans [EMAIL PROTECTED] wrote: try moving the title element as a sub element of the ellipse. idh_31 wrote: Hi all, I implemented a batik-based viewer in my java application to display SVG. Now

[svg-developers] Re: Problem installing Adobe SVG Viewer-urgent please

2005-04-27 Thread Samuel Dagan
Hi Sam C Ctan, In order to install a different version of ASV, you have to uninstall first the previous version. Did you do that? Samy --- In svg-developers@yahoogroups.com, samcctan [EMAIL PROTECTED] wrote: Hi all, I installed adobe SVG Viewer ages ago, and it works perfectly with

[svg-developers] Re: batik and title element

2005-04-27 Thread idh_31
Sorry, my last posting was wrong - it _did_ help and it works now! Thanks! --- In svg-developers@yahoogroups.com, idh_31 [EMAIL PROTECTED] wrote: No, I am afraid this does not help... --- In svg-developers@yahoogroups.com, Jorg Heymans [EMAIL PROTECTED] wrote: try moving the title

[svg-developers] Re: Problem installing Adobe SVG Viewer-Solved

2005-04-27 Thread samcctan
Hi all, I get it solved now. What I did is sort of cheating. I copy the adobe SVG viewer folder from another machine which works perfectly with ASV6 to the machine with installation problem - C:\Program Files\Common Files\Adobe. Then I copy both of the files in the plugin folder to Mozilla

[svg-developers] About getURL() method

2005-04-27 Thread jacky11287
Hi all, I am trying to use getURL() method to involve the server side servlet to query some map data and display it on the fly in the SVG file... I encountered a quite strange problem about getURL() method, that is, some requests were missing while requesting More clear, I used for loop

[svg-developers] Re: About getURL() method

2005-04-27 Thread jacky11287
--- In svg-developers@yahoogroups.com, Chris Peto [EMAIL PROTECTED] wrote: Hi, I have an Array in js and I make one call and when it is finished then I make the next until my Array of requests is finished. Hi Peto, Ar, you use an array to hold all the different request then extract it

Re: [svg-developers] Re: About getURL() method

2005-04-27 Thread Jorg Heymans
getURL(url, callback) executes asynchronously. It calls the callback method that was passed as a parameter when the response has arrived (ie the request is done). As to why you seem to loosing requests : have you configured a large enough connectionthreadpool in tomcat? HTH Jorg jacky11287

Re: [svg-developers] wrap text - problem to create a text:wrap element by javascript

2005-04-27 Thread Ronan Oger
First delete the text node, then create it again. That's most likely the solution to your problem. On Tuesday 19 April 2005 23:24, tangdm wrote: This can wrap text, but instead od replacing old text( this is what I want), the new text overlaps old ones. -- Gravity is a myth, the Earth

Re: [svg-developers] 3rd post - how to wrap text by JavaScript - Help please!

2005-04-27 Thread Ronan Oger
Have you considered holding your breath until your users implement SVG1.1, which supports text wrapping and textboxes? ASV6 (which is a preview release only) supports this, and so do Bitflash and Batik. Not sure about Mozilla and Konqueror native SVG implementations, but I suspect they also

[svg-developers] Re: About getURL() method

2005-04-27 Thread ts_oswald
Because the getURL method is asynchronous, I would suggest writing into the callback method the code that controls when the next getURL is executed. This will ensure that your requests are processed serially (if that is behavior you desire). --- In svg-developers@yahoogroups.com, Jorg Heymans

[svg-developers] Introduction

2005-04-27 Thread chiefpropellerhead
Hello, I am a developer of a high performance, comercial, Variable Data Printing (VDP) page composer. Currently it can generate PCL and PDF output at rates exceeding 100,000 pages per minute. A typical use is the generation of invoices for large companies. Looking to the future, I am

[svg-developers] Re: Introduction

2005-04-27 Thread jacky11287
Hi Mallory, I am a developer of a high performance, comercial, Variable Data Printing (VDP) page composer. Currently it can generate PCL and PDF output at rates exceeding 100,000 pages per minute. A typical use is the generation of invoices for large companies. Waaa, the generation

[svg-developers] Re: About getURL() method

2005-04-27 Thread jacky11287
Hi Heymans, getURL(url, callback) executes asynchronously. It calls the callback method that was passed as a parameter when the response has arrived (ie the request is done). Ar, getURL is asynchronously, but I have already write the function call as your suggestion. The problem

Re: [svg-developers] Introduction

2005-04-27 Thread Jorg Heymans
chiefpropellerhead wrote: Hello, I am a developer of a high performance, comercial, Variable Data Printing (VDP) page composer. Currently it can generate PCL and PDF output at rates exceeding 100,000 pages per minute. A typical use is the generation of invoices for large companies.

Re: [svg-developers] Re: About getURL() method

2005-04-27 Thread Jorg Heymans
jacky11287 wrote: but as I have tried, if insert a alert() function before getURL, that is.. for (numbers of request) { alert(something); getURL(url, callback); } Try requesting a static svg snippet from a webserver (apache) instead and see if your problem still persists. That

[svg-developers] Re: About getURL() method

2005-04-27 Thread Andreas Neumann
Hi Jacky, I would follow Joerg's advice and first try with static files. I use getURL all the time (with PHP on the server) and don't have any problems. I also don't have any double requests. My guess is that something with your serverside environment is wrong. Andreas --- In

[svg-developers] Sending info out of svg to html DOM or java app

2005-04-27 Thread arianhojat2000
Hey i am making an java servlet that displays/embeds an svg file in html (in a servlet). i would like the user to zoom/move the svg like he can in adobe svg but when he clicks submit, i want the resized, changed viewbox info to be passed to the next page. can i make this info externally

[svg-developers] SVG turned on in mozilla nightly builds

2005-04-27 Thread Holger Will
Hi everyone according to http://weblogs.mozillazine.org/chase/archives/2005/04/svg_here_we_com.html SVG is now available in all nightly builds of mozilla / firefox ( at least for Win and Mac builds) thats great news, i think, and i want to take the opportunity to once again thank all mozilla

[svg-developers] SVG Elearning Examples?

2005-04-27 Thread Andreas Neumann
Hi all, I have to write an article on SVG for E-Learning and give a presentation on that topic at the beginning of June in Berlin. Does anyone have any appealing examples that I don't know yet? I plan to list/demo the following examples: * Michel Hirtzlers math and filter demos *

RE: [svg-developers] SVG Elearning Examples?

2005-04-27 Thread kgordon
I remember there were a lot of neat things available on Doug Scheppers web site, maybe he will provide you with some items. -Original Message- From: svg-developers@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andreas Neumann Sent: Wednesday, April 27, 2005 10:54 AM To:

Re: [svg-developers] SVG Elearning Examples?

2005-04-27 Thread Holger Will
Hi Andreas I have to write an article on SVG for E-Learning and give a presentation on that topic at the beginning of June in Berlin. where exactly do you present that ? i m from berlin, and it would be interresting for me to see your presentation. I plan to list/demo the following

[svg-developers] Re: Problem with JavaScript for realt time visualization

2005-04-27 Thread shulo1978
Can anyone help please : (.. --- In svg-developers@yahoogroups.com, shulo1978 [EMAIL PROTECTED] wrote: Hi, I has a problem with JavaScript when it reads data from a JSP. My program works when the JSP pass only one single record at each time. But in reality, it passes several

[svg-developers] Cannot view XML input using CSS style sheet

2005-04-27 Thread tbone58x
My SVG graphs work great on my PC using Windows 2000 but when I pushed my code and the graph.css style sheet it will not work on the Apache server. Can anyone help with this? The graph.css file is one level up in the directory structure from the svg file location. The XML page cannot be

[svg-developers] Re: SVG Elearning Examples?

2005-04-27 Thread Andreas Neumann
Hi Holger, The presentation will be on June 2nd, in Potsdam (Telegraphenberg) - see more info at http://www.igg.tu-berlin.de/ConfMan/ISPRS/program.phtml It is a two-day workshop. make sure you don't miss these two: http://jan.kollhof.net/projects/svg/examples/microspatz/microspatz.svg

[svg-developers] Re: Cold Fusion and SVG

2005-04-27 Thread chaluba
This is an old thread but here are some tips for the benefit of those who generate SVG using ColdFusion. The svg generated by your .cfm should be well-formed xml. If you take a valid svg file and find out that it is no longer one when served by CF, then pay attention to the following: - If it

Re: [svg-developers] Re: SVG Elearning Examples?

2005-04-27 Thread Holger Will
Hi Andreas this is a comercial product,but might be interresting as well: http://www.crocodile-clips.com/crocodile/mathematics/index.htm I had a look at this. Is this anyhow related to SVG? yes, its the company Alex Fritze created the first version of mozilla SVG for. they use mozillas

[svg-developers] Re: SVG Elearning Examples?

2005-04-27 Thread Andreas Neumann
ah - thanks for the info. I did not notice. I saw that it is a offline application and could not directly see the link to SVG. I will have a look at the demo version. Andreas --- In svg-developers@yahoogroups.com, Holger Will [EMAIL PROTECTED] wrote: Hi Andreas this is a comercial

Re: [svg-developers] Re: Cold Fusion and SVG

2005-04-27 Thread Mike Chambers
fyi, Here is a post that shows how to ensure that no extra whitespace is added by ColdFusion: http://www.markme.com/cantrell/archives/006775.cfm mike chambers [EMAIL PROTECTED] On Apr 27, 2005, at 1:03 PM, chaluba wrote: - If it starts with the xml processing instruction (i.e. ?xml ...

Re: [svg-developers] Help neede in SVG issue - urgent

2005-04-27 Thread Ganesh Jothikumar
Hi Holger Thanks for the help. I followed your steps but I am not able to accomplish my task correctly Can you check whether my code is correct: ?xml version=1.0 standalone=no? !DOCTYPE svg PUBLIC -//W3C//DTD SVG 1.1//EN http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd; svg

Re: [svg-developers] SVG turned on in mozilla nightly builds

2005-04-27 Thread Jonathan Watt
On 4/27/05, Holger Will [EMAIL PROTECTED] wrote: Hi everyone according to http://weblogs.mozillazine.org/chase/archives/2005/04/svg_here_we_com.html SVG is now available in all nightly builds of mozilla / firefox ( at least for Win and Mac builds) thats great news, i think, and i want to