[svg-developers] Re: Is there any easy way to create an inset from the path?

2006-06-29 Thread GTTR
That's awesome! I am going to play with this to see if I can do it dynamically with our program. That is dynamically placing values in the translate equation. Thanks for your help. --- In svg-developers@yahoogroups.com, "pavoturkey" <[EMAIL PROTECTED]> wrote: > > You can do more than just a

[svg-developers] Re: Non-Arial font displayed in SVG file

2006-06-29 Thread cqlow
anyone has any ideas? --- In svg-developers@yahoogroups.com, "cqlow" <[EMAIL PROTECTED]> wrote: > > hi > > I have a 3rd party program tat generate a SVG file. When i opened in > IE6, (Adobe SVG Viewer) 3.0 is installed, i see some non-Arial font > displayed. > Screen shot : http://www.quizk.c

Re: [svg-developers] Re: 'Back' Button in SVG

2006-06-29 Thread Sean
Below is how it looks when I zoom or pan 5 times, the first is set onLoad. When I hit previous, I get the most recent one and delete it. I suppose it could add a lot of size if there were a lot of panning and zooming, but it would take a real lot to add anything significant.

[svg-developers] Re: 'Back' Button in SVG

2006-06-29 Thread talkli
That means, for every new status i need a new g tag. if i want to go back to the status before the previous one, i need to use 2 g tags??? Di --- In svg-developers@yahoogroups.com, Sean <[EMAIL PROTECTED]> wrote: > > For mapping, I use a g tag like: > > > > and set a value such as ext='0 0

Re: [svg-developers] 'Back' Button in SVG

2006-06-29 Thread Sean
For mapping, I use a g tag like: and set a value such as ext='0 0 500 600' based on the current status before moving on to the new one. Then if I want to go back, I just getAttribute('ext') and set my viewBox to it. Sean talkli wrote: > Hi, > > As everyone knows, that SVG can be manipulated

Re: [svg-developers] Re: getURL/XMLHTTP

2006-06-29 Thread Sean
Thank you so much. At first, I completely missed the relevance of what you said. Then it hit me. Basically, instead of var node = parseXML(data.content, document); I needed: var node = parseXML(data.content, parent.document.F4B.getSVGDocument()); Perfect! Sean Martin Honnen wrote: > --- In sv

[svg-developers] 'Back' Button in SVG

2006-06-29 Thread talkli
Hi, As everyone knows, that SVG can be manipulated with javascript. But how can i go back to the previous status of the SVG file after the manipulation? And how can i solve this problem, especially wenn the manipulation is based on AJAX (with new information from server)? Thanx in advance! -

[svg-developers] Re: Help with dynamic inline SVG

2006-06-29 Thread pothoven
Thanks for the tip on the DOM event handlers for Firefox! Unfortunately, the embed option for IE really isn't an option since I have no file to point the src to as the SVG was generated dynamically. Since the embed tag isn't part of the w3c spec and doesn't support inline data ('data:image/svg+xm

RE: [svg-developers] getURL/XMLHTTP

2006-06-29 Thread Peter Kalev
I noticed the same thing (ASV3.0 & IE6.0) - can't you use the third doc's 'parseXML'? When I load my HTML page and the embedded svg's load they identify themselves to the 'mother' page and then I use them as part of the DOM. I have to be careful which one I use for the 'parseXML', but when I ca

[svg-developers] Re: Help with dynamic inline SVG

2006-06-29 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, "pothoven" <[EMAIL PROTECTED]> wrote: > Instead of describing my problem in this post, I've tried to describe my > problem on this page > http://pothoven.blogspot.com/2006/06/help-with-dynamic-inline-svg.html >

[svg-developers] Re: getURL/XMLHTTP

2006-06-29 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Sean <[EMAIL PROTECTED]> wrote: > > Do you actually append it into an embedded svg doc other than the svg > doc you use to get your segment? Both my calling doc and the doc > associated with the parseXML are svg. I just can't get it to append into > a third

[svg-developers] Help with dynamic inline SVG

2006-06-29 Thread pothoven
I am trying to embed an SVG graph that is generated dynmically on the client side. This is for an Ajax application which receives XML data for the graph. An XSLT is applied to the XML to generate the SVG. I figured out a method to dynamically add the SVG inline (detail provided here: http://pot

[svg-developers] display changes in two panes(svg files)

2006-06-29 Thread achio_84
Hi all The exact situation that I'm facing is that, now, I have an svg file for drawing. And I wish to give the user different view of the drawing being drawn in the canvas. I wish to have two panes in 1 web form. 1 for the design/drawing and another 1 for the overview of the drawing drawn

Re: [svg-developers] Re: Mouse Cursor Handling

2006-06-29 Thread Guy Morton
and you can use the element around other elements to make it happen in ASV. ugly, but it works. Guy Andreas Neumann wrote: > yes, just use the cursor attribute. > > http://www.w3.org/TR/SVG11/interact.html#Cursors > > Cursors aren't implemented in Adobe SVG viewer version 3 but in all other >

[svg-developers] Re: Mouse Cursor Handling

2006-06-29 Thread Andreas Neumann
yes, just use the cursor attribute. http://www.w3.org/TR/SVG11/interact.html#Cursors Cursors aren't implemented in Adobe SVG viewer version 3 but in all other viewers (Opera9, MozillaSVG, Batik, ASV6). Andreas --- In svg-developers@yahoogroups.com, "pavoturkey" <[EMAIL PROTECTED]> wrote: > >