[svg-developers] Re: ASV6

2005-02-25 Thread friedhelmeichin
Some days ago I tried it. My first impression is good, performace is improved since ASV3. But the target of my test was not complete. If you install it you can fiond some information about it in the file C:\Programme\Gemeinsame Dateien\Adobe\SVG Viewer 6.0\Implementation White Paper.html But

Re: [svg-developers] ASV6

2005-02-25 Thread Burkhard Stollenwerk
I think it work stable, but callback functions are critical Burkhard - Original Message - From: Jan [EMAIL PROTECTED] To: svg-developers@yahoogroups.com Sent: Thursday, February 24, 2005 7:50 PM Subject: [svg-developers] ASV6 Is anyone using ASV6 in a production web site? If so,

[svg-developers] event in object

2005-02-25 Thread arno_sosna
hi, i have the following problem: i have a simple svg file with a single rect element. rect x=5 y=5 width=10 height=10 onmouseover=alert(evt)/ if i embed this svg file in a html document via embed, the mouseover is working and correctly opens an alert box with [object MouseEvent]. BUT: if

[svg-developers] iterate elemnets one by one

2005-02-25 Thread raghu raman
Hi I create and append the path element with id named as arrow line at some times in a groupElement. Now I need to get the element one by one using arrowLine. Is there any functions availabel to get the all elements using elements id. var

[svg-developers] Re: getPointAtLength

2005-02-25 Thread Andreas Neumann
getPointAtLength works in ASV3 and ASV6. It does not work in Batik, as far as I know ... Andreas --- In svg-developers@yahoogroups.com, renato_stancato [EMAIL PROTECTED] wrote: I need to retrieve the coordinate of a path element in a certain distance. I know that there is a

RE: [svg-developers] iterate elemnets one by one

2005-02-25 Thread Doug Schepers
Hi, Raghu- An id is a unique identifier. You shouldn't have more than one element in a single document with the same id, and if you do, the results of accessing any of them by script will be unpredictable. A solution would be to increment the ids (arrowLine1, arrowLine2, arrowLine3), and to

[svg-developers] Re: getPointAtLength

2005-02-25 Thread renato_stancato
I need it in Batik :( --- In svg-developers@yahoogroups.com, Andreas Neumann [EMAIL PROTECTED] wrote: getPointAtLength works in ASV3 and ASV6. It does not work in Batik, as far as I know ... Andreas --- In svg-developers@yahoogroups.com, renato_stancato [EMAIL PROTECTED]

[svg-developers] Re: getPointAtLength

2005-02-25 Thread Andreas Neumann
yes, I would need it as well. I would like to have .getTotalLength() and .getPointAtLength() in Batik. Both work in ASV, but not in Batik. You should post your request on the Batik list, however. Andreas --- In svg-developers@yahoogroups.com, renato_stancato [EMAIL PROTECTED] wrote:

Re: [svg-developers] Update Project What do you think about

2005-02-25 Thread Peter Thompson
I don't see anything using ASVG3.02 in Windows. Burkhard Stollenwerk [EMAIL PROTECTED] wrote:Hello, Could you have a look at my project. What do you think about? www.futurefarm.de/ http://futurefarm.de/kuh2005/svgkuh.svg Burkhard Stollenwerk [Non-text portions of this message have been

Re: [svg-developers] Re: Draw Arrow Head

2005-02-25 Thread raghu raman
Hi, Now I placed a arrowhead in middle of the line using path element. First I say thank you every body to provide a best solutions. I placed here one sample file to draw a arrow head line. ?xml version=1.0 standalone=no? !DOCTYPE svg PUBLIC -//W3C//DTD SVG 20001102//EN

RE: [svg-developers] Update Project What do you think about

2005-02-25 Thread Chris Peto
Hi, I get Line 262 SyntaxError: syntax error on win2k sp4 ASV 3.02. Then ReferenceError: init is not defined. Mit freundlichen Grüßen/Regards Chris Peto Freelance System Development, Resource Solutions Founding Partner, Vectoreal - Germany Mobile: +49

Re: [svg-developers] opentype to truetype converter

2005-02-25 Thread Chris Lilley
On Thursday, February 24, 2005, 1:42:51 PM, Andreas wrote: AN Hi all, AN I have a Opentype font that I would like to convert to SVG glyphs AN for use in a svg mapping application. AN I only have a truetype to svg glyph converter (Batik). Does someone AN have a opentype to truetype

Re: [svg-developers] opentype to truetype converter

2005-02-25 Thread Thomas DeWeese
Hi Chris, Chris Lilley wrote: On Thursday, February 24, 2005, 1:42:51 PM, Andreas wrote: AN I have a Opentype font that I would like to convert to SVG glyphs AN for use in a svg mapping application. AN I only have a truetype to svg glyph converter (Batik). Any features of OpenType

[svg-developers] How to refer to a parent JavaScript function ?

2005-02-25 Thread jaymejeffman
I have a frameset, which is the main browse window, and two vertical frames. On the left frame I have an outline menu and on the right I have a html page with an embeded svg file. I would like to have access to an window.open function, which is placed in the frameset file, when the user clicks

[svg-developers] SVG embedded in a blogspot blog?

2005-02-25 Thread Marjorie Roswell
Hi, I'm brand new to SVG, but smitten. I figured I'd start a blog, http://SVGMapper.blogspot.com/ to document development as I start from ground zero. (maybe a better word for that!) Already, I see I've met a challenge...I want to be able to provide samples via the blog. I don't think I can

[svg-developers] Panning

2005-02-25 Thread Rerun
Maybe I should rephrase my question. Is there a way to freeze the SVG while my home-made panning tool is panning, similar to what the Adobe viewer pan tool doese? For large SVG content, panning can be slow otherwise. Thanks. - To unsubscribe send a message to: [EMAIL PROTECTED] -or-

RE: [svg-developers] Panning

2005-02-25 Thread kgordon
You asked how to keep it from refreshing svg until mouse up event. The svg doesn't change anything on its own, you do it in script. If you don't want anything to change until mouse up, then do your modifications to the SVG on the mouseup event. It sounds like maybe your doing a click and drag

Re: [svg-developers] Panning

2005-02-25 Thread Rerun
I want the SVG to move as I drag the mouse, similar to the Adobe viewer pan tool, but I want the svg to be clipped at the viewbox edges until the mouseup event. The adobe viewer clips around the edges until mouse up, making it very fast when moving the SVG around. [EMAIL PROTECTED] wrote:

RE: [svg-developers] Panning

2005-02-25 Thread Pete d'Oronzio
I want the SVG to move as I drag the mouse, similar to the Adobe viewer pan tool, but I want the svg to be clipped at the viewbox edges until the mouseup event. The adobe viewer clips around the edges until mouse up, making it very fast when moving the SVG around. I think that the

RE: [svg-developers] Panning

2005-02-25 Thread kgordon
I wonder what effect appending a clip path around the svg would have? Maybe it would increase the performance? -Original Message- From: Pete d'Oronzio [mailto:[EMAIL PROTECTED] Sent: Friday, February 25, 2005 2:45 PM To: svg-developers@yahoogroups.com Subject: RE: [svg-developers]

Re: [svg-developers] Panning

2005-02-25 Thread Rerun
I thought about clipping, but that seems complicated. I also thought about the raster idea. This begs the question, can an svg, within viewbox only, be converted to a raster on mousedown? If it can, the rest is easy. [EMAIL PROTECTED] wrote: I wonder what effect appending a clip path

RE: [svg-developers] Panning

2005-02-25 Thread Pete d'Oronzio
I thought about clipping, but that seems complicated. I also thought about the raster idea. This begs the question, can an svg, within viewbox only, be converted to a raster on mousedown? If it can, the rest is easy. Question: If you're running in a browser, using the Adobe viewer...

Re: [svg-developers] Panning

2005-02-25 Thread Rerun
The Adobe viewer doesn't allow me to create buttons for zoom and pan, and I also want to be able to reset my viewbox as I'm zooming and panning. I create maps dynamically out of a database depending on scale. Pete d'Oronzio wrote: I thought about clipping, but that seems complicated. I also

Re: [svg-developers] SVG Fonts

2005-02-25 Thread Thomas DeWeese
sunburned_surveyor wrote: Can anyone recommend a good tutorial/article on this subject? Nothing comes to mind, in general a SVG font is just more geometry with a funny coordinate system and stuff. Are there any open source repositories or libraries for SVG fonts. Is there any interest in

[svg-developers] Save SVG as PNG file?

2005-02-25 Thread tbone58x
I am using Windows 2000 and need to save the output of SVG content as a PNG file. What is the best tool to do something like this? - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click edit my membership Yahoo!

[svg-developers] read text from a file and draw it on the SVG dynamically

2005-02-25 Thread solomoonor
Hi, anyone got idea how to read a text value from a file and draw it on the svg? I just know how to change the attributes but don't know how to get the text from the file. I've read the document and try to find out how to do it, but just don't understand -_-|| - To unsubscribe send a

[svg-developers] Re: Re: Message

2005-02-25 Thread dean
See the attached file for details. [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 membership Yahoo! Groups Links * To visit your group on the

[svg-developers] call JS function from html ?

2005-02-25 Thread Alex Ost.
Hi, It is easy to call a JS function defined in HTML from embedded SVG But, how do I do it when the function is defined in SVG and the call should be from the html side or even from other frame? Help will be gratitude. 10x in advanced - To unsubscribe send a message to: [EMAIL