Re: [svg-developers] what is the firefox equivalent?

2005-10-20 Thread Chris Lilley
On Wednesday, October 19, 2005, 10:10:44 AM, Z wrote: ZTM Hi, ZTM This works with the adobe plugin, but not with firefox 1.5: ZTM *event.getCurrentNode().getOwnerDocument(); ZTM *does anyone know what the firefox equivalent for this is? Its not a case of the Firefox equivalent. The syntax

RE: [svg-developers] help me solve this issue

2005-10-20 Thread Doug Schepers
Bad Cameron! No cookie! You forgot to declare the XLink namespace in the root. svg xmlns=http://www.w3.org/2000/svg; xmlns:xlink=http://www.w3.org/1999/xlink; a xlink:href=two.svg rect x=100 y=100 width=100 height=100/ /a /svg Regards- Doug [EMAIL PROTECTED] www.vectoreal.com

Re: [svg-developers] what is the firefox equivalent?

2005-10-20 Thread Z T Minhas
Thanx, Its not that big a change and it seems that I don't have to do much in terms of rewriting my code. zafar Chris Lilley wrote: On Wednesday, October 19, 2005, 10:10:44 AM, Z wrote: ZTM Hi, ZTM This works with the adobe plugin, but not with firefox 1.5: ZTM

Re: [svg-developers] help me solve this issue

2005-10-20 Thread Cameron McCormack
Doug Schepers: Bad Cameron! No cookie! You forgot to declare the XLink namespace in the root. Heh, yes, you found me out secretly trying to undermine your pro-namespaces campaign! :) -- e-mail : cam (at) mcc.id.au icq : 26955922 web : http://mcc.id.au/msn :

[svg-developers] streetmap: data structure

2005-10-20 Thread Omar Abo-Namous
Hi everyone, i'd like to write a small application for viewing event-locations. I don't want to use map-services such as map24 because of two reasons: 1. I'd like to program it myself 2. I'd like to be able to insert special icons (POI, event-icon ..) and tool-tips. I thought, i'll insert the

Re: [svg-developers] Re: Heresy - Convert svg to jpg?

2005-10-20 Thread Jeff Rafter
Simon, In addition to the toolkits mentioned, this is also possible using SharpVectorGraphics-- it has support for use, but no scripting currently-- certain features are a little spotty. But if you are in an ASP.NET environment then it threads in seamlessly. BTW: if you do check it out-- the

[svg-developers] PDF generation using SVG and Adobe Document Server

2005-10-20 Thread Paul
I'm trying to generate a PDF using SVG file and Adobe Document Server. Just to give an overview of what I am doin: I create an SVG with all the fields and pass to the adobe documnet server an xml document containing the values of the text fields and the svg to generate a pdf. The problem is

[svg-developers] Google Maps

2005-10-20 Thread sara_j_porter
Anyone care to comment on the Google Maps API? http://www.google.com/apis/maps/ When I searched SVG in the Google Maps Group (http://groups.google.com/group/Google-Maps-API), some listings came up. Samples of the mash-ups can be found on this guy's blog: http://googlemapsmania.blogspot.com/

[svg-developers] Embed svg to PDF

2005-10-20 Thread Z T Minhas
Hi, Is there a programmatic way in java to embed my SVG document, which has lots of javascript into PDF? I am currently using FOP. but i am not sure how I can use FOP to embed SVG into PDF. Zafar Yahoo! Groups Sponsor ~-- Fair play? Video games

[svg-developers] Find differences between 2 versions of a chart

2005-10-20 Thread Bram
Hi, Does anyone know about a program that finds and highlights the differences between two versions of an SVG chart? Ideally, the program should only produce visible differences. I think it is rather difficult to make a general tool, but I suppose with a couple of restrictions (e.g. equal IDs

[svg-developers] Re: Google Maps

2005-10-20 Thread Jim Ley
sara_j_porter [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Anyone care to comment on the Google Maps API? Sure, it's an API, it's very mappy.. When I searched SVG in the Google Maps Group (http://groups.google.com/group/Google-Maps-API), some listings came up. Yeah, both me and

[svg-developers] Building and saving compsite SVG images programatically.

2005-10-20 Thread world_shaper
Hey Everyone. OK. First off, I am BRAND NEW to SVG development, so I have a lot of questions and no experience. Heck, three days ago I didn't even know what SVG was. The more I read about it, though, the more I like it. I could easily ask a hundred questions here, but I will limit it to one

[svg-developers] SVG Forms

2005-10-20 Thread sent1729
Hi all, Is it possible to create an SVG form (like a VB or HTML from) that can be used to data from the user and select svg elemts based on that. In my application I am trying to selector add or delete svg elements (lines, polylines and points) based on the attributes associated with the

Re: [svg-developers] Building and saving compsite SVG images programatically.

2005-10-20 Thread david dailey
Am not entirely sure if I follow your question but I think SVG can do the sorts of things you describe with JavaScript. See for example: http://marble.sru.edu/~ddailey/svg/hexemb5.html (for some hex-tiling constructed on-the-fly) and http://srufaculty.sru.edu/david.dailey/svg/tiles.svg (for a

[svg-developers] translate event coords to svg coords

2005-10-20 Thread Jon Saints
I have written functions to translate my mouse event coordinates to SVG coordinates. Is there is a built in SVG way for doing this? Thanks Jon Yahoo! Groups Sponsor ~-- Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.

[svg-developers] Re: regarding group

2005-10-20 Thread Francis Hemsher
Hai sakthidasan, Try: var grouptit=svgDocument.createElementNS(svgns,'g'); Regards, Francis --- In svg-developers@yahoogroups.com, sakthidasang [EMAIL PROTECTED] wrote: Hai, Thanxs for the reply to my previous request on map.I learned that it is not possible to get the coordinates

[svg-developers] Re: help me solve this issue

2005-10-20 Thread Francis Hemsher
Cameron, I'll send anyone a case of Orios, when they begin to address the namespace quagmire in a developer-friendly method for SVGers. The Cookie Monster(aka namespaces are dumb,dumb,dumb) --- In svg-developers@yahoogroups.com, Cameron McCormack cam-svg- [EMAIL PROTECTED] wrote: Doug

[svg-developers] Repeating Visibility animation.

2005-10-20 Thread Joshua Woodward
Ok, what I am trying to do is make a circle go from visible to hidden over and over again. I can get it to do it if I have two animations: one that goes from visible to hidden and one that goes from hidden to visible. But I was wondering if I could make one animation that would repeat from hidden

[svg-developers] Re: Repeating Visibility animation.

2005-10-20 Thread Francis Hemsher
Hi Joshua, Actually, to accomplish this, your don't need the animate element. Try: var circleBlinker=//---access your circle via getElementId i guess is the easiest--- //--start the blinker via some event, onload, whatever--- function startBlinker() {

[svg-developers] Graphs Development using SVG/Batik

2005-10-20 Thread Prashant Prasannakumaran
Hi, i'm just starting off into SVG. i've downloaded the Batik package. I plan to use SVG to generate runtime graphs for my Java Swing based Application. I need some articles or code samples to get started with creating graphs in SVG. i'm waiting eagerly for inputs from this group:)

RE: [svg-developers] Graphs Development using SVG/Batik

2005-10-20 Thread Doug Schepers
Hi, Prashant- Could you specify what you mean by graphs? Do you mean node-edge graphs, or charts (like line charts, bar charts, pie charts, etc.) There are examples of both on the Web, but if we know details about what you want, we can be more specific. Also, if you're going to be using Java

RE: [svg-developers] kiss getters setters goodbye!

2005-10-20 Thread Doug Schepers
Hi, Francis- Francis Hemsher wrote: | | Adobe's SVG viewer provided that feature, | methinks because it was a means of helping us early neophites | to apply SVG. No, I'm pretty sure that it's as Chris Lilley said a couple of days ago [1], that they were needed for Netscape 4, and are simply