Re: [svg-developers] Re: Commercial SVG application - 3D pixel advert cube

2006-01-26 Thread Sylvain Rouillard
Le Jeudi 26 Janvier 2006 07:50, pix.cube a écrit : Hi Cameron, I've checked the script and it turns that it only checked for the old images/svg-xml mimetype support. I've included the newer images/svg+xml mime type and this seems to work now. Would you mind checking it again for me. Thank

[svg-developers] Re: Commercial SVG application - 3D pixel advert cube

2006-01-26 Thread pix.cube
Thank you Sylvain, I will have a look at that and see if I can get it fixed. --- In svg-developers@yahoogroups.com, Sylvain Rouillard [EMAIL PROTECTED] wrote: Le Jeudi 26 Janvier 2006 07:50, pix.cube a écrit : Hi Cameron, I've checked the script and it turns that it only checked for the

[svg-developers] SVG TO PDF

2006-01-26 Thread Petronel Laviniu MALUTAN - Talente.ro
In the mean time I've arrived here ! http://www.zend.com/zend/tut/tutorial-PDFgen2.php From this point it should be very easy of including SVG into PDF. I will try soon to create with a comercial tool a PDF with a single line in it and an other one with the line and SVG. Than should be cleare what

RE: [svg-developers] SVG/Ajax vs Flash/Ajax vs Java/Ajax or TCP/IP

2006-01-26 Thread Goran Pusic
First, thanks to all who replied! If you are serving already-created SVG graphics, then those can be compressed, which also eliminates most of the data file size issue. Yes, it would be something like this, I guess. Also, once the page is displayed, I would like to animate the content using

Re: [svg-developers] Digest Number 3196

2006-01-26 Thread Petronel Laviniu MALUTAN - Talente.ro
I have generated svg and now I try to save locally on the surfer HDD with : ... echo text x=\525\ y=\120\ text-anchor=\middle\Click to Save SVG/text; echo rect onclick=\document.execCommand('SaveAs',false, 'ap2.svg')\ x=\450\ y=\102\ width=\150\ height=\30\ fill=\red\ fill-opacity=\0.2\/; ... It

Re: [svg-developers] SVG/Ajax vs Flash/Ajax vs Java/Ajax or TCP/IP

2006-01-26 Thread Jeroen Vanattenhoven
Yes, that's true. I can give you a nice example of an SVG mapping application which uses a database for GIS data, PHP, XMLHttpRequest for getting the data, and JavaScript for the application itself. I will give you an idea of what you can do with it. You can find a lot of GIS applications at

[svg-developers] Re: SVG and Web Mapping Servers

2006-01-26 Thread Ben
Hi, In response to the Geoserver vs MapServer post: Actually I've found Mapserver to be irritating. After downloading the windows installer and setting it up, it doesn't fully work and you have to download all these additional *nix libraries for a variety of ad hoc sites and compile then as

Re: [svg-developers] SVG/Ajax vs Flash/Ajax vs Java/Ajax or TCP/IP

2006-01-26 Thread Martyn Eggleton
Goran Pusic wrote: First, thanks to all who replied! If you are serving already-created SVG graphics, then those can be compressed, which also eliminates most of the data file size issue. Yes, it would be something like this, I guess. Also, once the page is displayed, I would like to

[svg-developers] My photos

2006-01-26 Thread jon.ferraiolo
i just any one see my photos. It's Free :) [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

[svg-developers] Internet explorer crash with Adobe SVG Viewer

2006-01-26 Thread Jacques
We are developing an SVG pedigree drawing system that basically produces a family tree with interconnecting lines and colour overlays. The problem is that we're experiencing an intermittent crash with internet explorer which results in the following message being logged in XP's event viewer:

[svg-developers] add string as a node(Element) to svg document.

2006-01-26 Thread sent1729
Hi all Is it possible to add a string (which is an svg(xml)) as a node ( for e.g. svg g./ /svg) to an svg document. I have added svg elements to an svg document by using var a = createElement(string)and doc.appendchild(a). But in the above mentioned case

Re: [svg-developers] SVG/Ajax vs Flash/Ajax vs Java/Ajax or TCP/IP

2006-01-26 Thread Peter Thompson
I don't agree that SVG is the best solution without a more complete list of evaluation criteria (it doesn't have to be long, but probably longer than the 4 items you listed) and how the various solutions compare. Two things that were on my list of evaluation criteria when I was evaluating the use

[svg-developers] Re: add string as a node(Element) to svg document.

2006-01-26 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, sent1729 [EMAIL PROTECTED] wrote: Is it possible to add a string (which is an svg(xml)) as a node ( for e.g. svg g./ /svg) to an svg document. You need tools to parse the SVG markup into DOM nodes, then you can

[svg-developers] Calling an external function.

2006-01-26 Thread waynehet
Hi all. Here's my problem. I have a Delphi app that uses an embedded ASV control and I can load and display svg graphics quite nicely. I have used external js files and also added eventlistners from the Delphi code. Now, I would like to be able to call a Delphi function from within the svg

[svg-developers] I found the answer

2006-01-26 Thread sent1729
This is what I did, var nodenew = parseXML(g id='newnode'/, document); grpAtt.appendChild(nodenew); Thanks Nathan. -- In svg-developers@yahoogroups.com, Martin Honnen [EMAIL PROTECTED] wrote: --- In svg-developers@yahoogroups.com, sent1729 [EMAIL PROTECTED] wrote: Is it possible to

Re: [svg-developers] Bizare JavaScript problem

2006-01-26 Thread Richard Pearman
Hi, I've figured this out! I'd forgotten to put the priest2 element into the new file. What was confusing was that it complained about this before executing begin() and gave a line number in the error message which also implicated begin(). I suppose the message is that a JavaScript error

Re: [svg-developers] Re: SVG and Web Mapping Servers

2006-01-26 Thread Barend Köbben
Again, I find both Mapserver and Geoserver OK, but I do suggest that when starting MapServer on windows, you use MS4W, the Mapserver for Windows package,which includes Apche webserevre, Mapservre, PHp and lots of other stuff. I let students download the MS4W package

[svg-developers] Placing SVG elements, other than text, along a path

2006-01-26 Thread run2bmi21
I'd like to create a circular path in SVG and place circles on it, like charms on a bracelet. I'm very familiar with placing text along a path via the textPath element. Just wondering if other SVG elements, like circles, can be similarly placed. Haven't yet run across how to do this in SVG.

[svg-developers] Re: Placing SVG elements, other than text, along a path

2006-01-26 Thread Heiko Niemann
Hi Doug, you can define a custom font (the letter 'C' e.g. could be a circle) and then you use textPath as usual - either use percentage values for the startOffset attribute or use script to calculate the offset for more complex paths. Some samples:

[svg-developers] Re: Placing SVG elements, other than text, along a path

2006-01-26 Thread run2bmi21
Thanks Heiko. In a millions years, I wouldn't have thought of your very interesting solution to my problem. This area of SVG, defining custom fonts, perhaps it's under-appreciated, underutilized, often overlooked. Doug --- In svg-developers@yahoogroups.com, Heiko Niemann [EMAIL PROTECTED]

[svg-developers] Re: Commercial SVG application - 3D pixel advert cube

2006-01-26 Thread pix.cube
Hi Sylvain and Cameron, I think I may have been able to resolve this problem now. Would you mind testing it again for me at http://www.pix-cube.com/cubeview.php Thank you, Pix-cube [Non-text portions of this message have been removed] - To unsubscribe send a message to: [EMAIL

[svg-developers] a element in Firefox/Opera native SVG

2006-01-26 Thread pix.cube
Hi everyone, I have a small SVG implementation at http://www.pix-cube.com/cubeview.php . It shows a pseado-3D cube of images and the idea is to click on the images to be taken to a specific website. The problem is that in Firefox and Opera native support the SVG file is displayed in an

Re: [svg-developers] Re: Commercial SVG application - 3D pixel advert cube

2006-01-26 Thread Cameron McCormack
pix.cube: I think I may have been able to resolve this problem now. Would you mind testing it again for me at http://www.pix-cube.com/cubeview.php Works now. -- Cameron McCormack ICQ: 26955922 cam (at) mcc.id.au MSN: cam (at) mcc.id.au

[svg-developers] Set Mouse Cursor Position?

2006-01-26 Thread Jeff Schiller
Quick question: Is there any way to set the mouse cursor position? I'm working on expanding my SVG drag library and I'd like the ability to constrain drags in a particular direction (only be able to drag a slider left/right, not up/down, for instance). However, I seem to have no control over

RE: [svg-developers] Set Mouse Cursor Position?

2006-01-26 Thread Doug Schepers
Hi, Jeff- Jeff Schiller wrote: | | Quick question: Is there any way to set the mouse cursor position? No, there is no way to do that. The idea has been floated in various circles, but there are security issues that would need to be resolved, for one thing. (Example: moving the cursor to the