Re: [svg-developers] dragging from html to svg?

2007-08-02 Thread Stephen Quintero
Hi - Sort-of. Something like this is implemented at www.millipe.de where items can be dragged from an HTML menu onto an SVG canvas. But, what really happens is that dragging in the HTML calls an ecmascript function (SVG) saying "we might drag this onto the canvas". Then, mouse-move in the SVG c

Re: [svg-developers] Re: Undermining SVG (was: What alternatives to ASV for IE6/7 ?)

2007-06-08 Thread Stephen Quintero
Hi All, First, while support for ASV will end as of 2008, I understand the existing plug-in will continue to be supplied by Adobe indefinitely. Also, the current stable release of ASV seems (to me) as good or better than the developing native support. So you may be in less of a crunch than you t

Re: [svg-developers] zoom

2007-06-08 Thread Stephen Quintero
A bit of searching will yield several useful examples, such as this one: http://alzt.tau.ac.il/~dagan/tools/panZoom.svg Stephen On 6/7/07, yassinezt <[EMAIL PROTECTED]> wrote: > > hi all im new in this groups please helpme i wanna make a programme > that make zoom in svg thanx a lot > > >

Re: [svg-developers] Re: Sites That Utilize SVG

2007-06-08 Thread Stephen Quintero
This site, my work, which uses SVG as a 2D CAD system for assembling and laying out components. http://www.millipe.de It's beta. LAMP + AJAX + SVG + X3D Stephen On 6/8/07, Richard Pearman <[EMAIL PROTECTED]> wrote: > > Hi, > > --- In svg-developers@yahoogroups.com , > "amsteve23" <[EMAIL P

Re: [svg-developers] Re: Silverlight and other RIA's and RWC

2007-06-04 Thread Stephen Quintero
Give it a break fellows. What a stupid can of worms. This is not a political list. Just information and technology and help and even insight. It can be SVG tech, or the limits of SVG tech, or other tech which adds to SVG, or even competes with SVG by way of examination. But who wants to swallo

Re: [svg-developers] OT

2007-05-26 Thread Stephen Quintero
Hi All, I guess it's a sore spot. Since I asked the original question, I'll put in my last 2 cents. I've more than a 1,000 hours invested in a commercial tool which relies heavily on SVG (and it's in alpha). It is all built with open standards tech. It works (though not identically in all brow

Re: [svg-developers] help please

2007-05-20 Thread Stephen Quintero
Hi, Try these: Method 1: to do it dynamically, use AJAX to get some information from the server, for example, a $_SESSION var, or some new SVG geometry.Here is an example from my working code (much of which is borrowed from other folks) which returns both text and a node (using the same data

Re: [svg-developers] Re: a few quiestions...

2007-05-18 Thread Stephen Quintero
g > batik.. and sir, what do you mean in solution A? > > --- In svg-developers@yahoogroups.com , > "Stephen Quintero" > > <[EMAIL PROTECTED]> wrote: > > > > Hello, > > > > Maybe there are better solutions, but here goes: > > > &

Re: [svg-developers] a few quiestions...

2007-05-17 Thread Stephen Quintero
Hello, Maybe there are better solutions, but here goes: 1. When you rotate the rect, you rotate its coordinate system. And when you update its translation during dragging, these X and Y updated attributes take effect in this rotated coordinate system. Hence the funny drag. Solution A: when y

Re: [svg-developers] SVG project compliant...

2007-05-15 Thread Stephen Quintero
Also, I looked at it in Firebug. It complains, in addition to the svgZoomValueObj.getFirstChild that printNode is undefined (which is I think ASV only). You can get Firebug at: http://www.getfirebug.com/ Stephen On 5/15/07, Stephen Quintero <[EMAIL PROTECTED]> wrote: > >

Re: [svg-developers] SVG project compliant...

2007-05-15 Thread Stephen Quintero
--Message d'origine- > De : svg-developers@yahoogroups.com [mailto: > svg-developers@yahoogroups.com ] > De la part de Stephen Quintero > Envoyé : mardi 15 mai 2007 18:29 > À : svg-developers@yahoogroups.com > Objet : Re: [svg-developers] SVG project compliant... > > He

Re: [svg-developers] EOLAS & SVG

2007-05-15 Thread Stephen Quintero
. Stephen On 5/10/07, Stephen Quintero <[EMAIL PROTECTED]> wrote: > > A little more: > > I tried a test case using document.write to create the embed (in an > external js file). It behaves the same way (IE7 okay, IE6 no go). > > Also, it is the same whether script debug

Re: !SPAM: Re: {Disarmed} Re: !SPAM: [svg-developers] help me pleaese

2007-05-15 Thread Stephen Quintero
("Content-type: image/svg+xml"); > ?> > > before your svg code and save the file as .php - this solution worked > like a charm for me. > > Olaf > > Stephen Quintero wrote: > > The carto link is very clear. It requires only two one-line changes to > > apache config fil

Re: [svg-developers] SVG project compliant...

2007-05-15 Thread Stephen Quintero
12 61 68 02 > > +41 77 408 81 46 > > _ > > De : svg-developers@yahoogroups.com [mailto: > svg-developers@yahoogroups.com ] > De la part de Stephen Quintero > Envoyé : mardi 15 mai 2007 16:34 > À : svg-developers@yahoogroups.com > Objet : Re: {Disarmed} Re: !SP

Re: {Disarmed} Re: !SPAM: [svg-developers] help me pleaese

2007-05-15 Thread Stephen Quintero
Hi, The carto link is very clear. It requires only two one-line changes to apache config files and works like a charm (for me). I am using it on my home machine using XAMPP and also on a testing server. A very practical solution for dynamic SVG generation. Please see: http://www.carto.net/pap

Re: !SPAM: [svg-developers] help me pleaese

2007-05-15 Thread Stephen Quintero
Hi - Yes, you can process php code in an svg document, IF you set up your server to do so first. Just putting in won't do it. For instructions on how to do this, please see: http://www.carto.net/papers/svg/samples/serverside_svg_php.shtml Stephen On 5/15/07, Olaf Schnabel <[EMAIL PROTECTE

Re: [svg-developers] EOLAS & SVG

2007-05-10 Thread Stephen Quintero
A little more: I tried a test case using document.write to create the embed (in an external js file). It behaves the same way (IE7 okay, IE6 no go). Also, it is the same whether script debugging is on/off. Stephen On 5/10/07, a30blows <[EMAIL PROTECTED]> wrote: > >I have worked around th

Re: [svg-developers] how to know if there is ane intersection?

2007-05-10 Thread Stephen Quintero
You can figure it out by testing each segment of the rect against the line for intersection. Then test the intersection is within the bounding box of the rect. This function came from carto.net: function intersect2lines(line1x1,line1y1,line1x2,line1y2,line2x1,line2y1,line2x2,line2y2) { //for

Re: [svg-developers] a noobie and a lot of questions.. please help...

2007-05-02 Thread Stephen Quintero
Hi, I do not use Batik, but I understand it does not function as a browser plug-in but rather under Java. That aside, FireFox/Mozilla has native SVG support including ecmascript. IE can use the Adobe plugin. But, for information, here are some good resources. You will just have to dig and read

Re: [svg-developers] HTML-SVG in Firefox

2007-03-29 Thread Stephen Quintero
This works for me: function init(evt) { if ( window.svgDocument == null ) svgDocument = evt.target.ownerDocument; var SVGRoot = svgDocument.documentElement; } Stephen On 29 Mar 2007 05:47:17 -0700, Olaf Schnabel <[EMAIL P

Re: [svg-developers] Re: Panning with Opera and Firefox

2007-03-26 Thread Stephen Quintero
Hi, I use these functions, which are called in my case as javascript in the HTML, but you could as easily put them in the SVG document and build a graphical interface. This code was cobbled together by examining: http://alzt.tau.ac.il/~dagan/tools/panZoom.svg Here's another source: http://pilat