[svg-developers] Re: use tag and unique IDs

2006-02-09 Thread domenico_strazzullo
Sean, Of course it's possible. You need to target the document and not just the element that makes the call: function edit2(evt){ // var objet=evt.target; var objet = evt.target.ownerDocument; var tspan1 = objet.getElementById("tspan1"); //Works tspan1.firstChild.dat

[svg-developers] Certificaion

2006-02-09 Thread Fulio Pen
I wonder whether the job market for svg skills is good. Computer skills in many fields, such a java, A+, Microsoft, Oracle and many others, can be certified. If a certification for svg can be developed, many people may take the test. This will be an incentive for people to learn the technolo

[svg-developers] Re: Certificaion

2006-02-09 Thread kubik_sj
Hey Fulio, Ronan oversees a group called "SVG-Jobs", http://groups.yahoo.com/group/svg-jobs/ Sara --- In svg-developers@yahoogroups.com, Fulio Pen <[EMAIL PROTECTED]> wrote: > > I wonder whether the job market for svg skills is good. Computer skills in many fields, such a java, A+, Microsoft,

RE: [svg-developers] Certificaion

2006-02-09 Thread Peter Kalev
Just put more restrictions... ...my two cents... Peter Kalev Senior Developer, SWF, LLC -Original Message- From: Fulio Pen [mailto:[EMAIL PROTECTED] Sent: Thursday, February 09, 2006 7:24 AM To: svg-developers@yahoogroups.com Subject: [svg-developers] Certificaion I wonder whether the

[svg-developers] Re: get screen size in batik squiggle browser

2006-02-09 Thread Andreas Neumann
Hi Nathan, the svg root element has the .viewport attribute for that purpose which is implemented in Batik. See the file below. a good resource to view the available SVG DOM methods and properties is btw http://phrogz.net/ObjJob/object.asp?id=133 - there aren't comments, but at least yo

[svg-developers] Re: Problems with DOM Objects: serialize an XML node to a string...

2006-02-09 Thread Verusa Domethildes
Hi Martin. I'm so happy! The example that you posted helped me... :) I'm using IE 6 and ASV 3. Thank you so much! This article about SVG Server Side is interesting too.. http://www.xml.com/pub/a/2002/02/27/batik/index.html Regards, Verusa Domethildes --- In svg-developers@yahoogroups.com, "M

[svg-developers] mouse dblclick event

2006-02-09 Thread ilker
how do I get mouse dblclick event? regards [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

Re: [svg-developers] Re: use tag and unique IDs

2006-02-09 Thread Sean
Domenico, First, thanks for pointing me to the resizable text wrap. It was just what I needed. With regards to the use tag, I was hoping I could reuse a tspan element and modify the text for each use tag, but once I change tspan1, all the references would reflect it. So using a tspan in the

[svg-developers] Re: mouse dblclick event

2006-02-09 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, "ilker" <[EMAIL PROTECTED]> wrote: > > how do I get mouse dblclick event? You might want to check the click event and the detail property of the event object: - To unsubscribe s

Re: [svg-developers] Re: use tag and unique IDs

2006-02-09 Thread Sean
Jeff, As of now, I realize I cannot use the use tags the way I thought I could, but I'm still curios. Either I'm missing something or I don't get what is going on. If I understand correctly, use = target.correspondingUseElement; should give me the use tag I clicked on. Which means use.getAt

[svg-developers] Interesting interview with Miguel de Icaza cofounder of gnome

2006-02-09 Thread mobiform
Interesting interview with Miguel de Icaza cofounder of gnome, ximian and mono. The bottom of the article he talks about the biggest risk to the open source community and XAML Regards, Ron DeSerranno Mobiform Software Ltd. http://www.mobiform.com Download the Aurora XAML Designer Now! http:

[svg-developers] Google Maps to use svg

2006-02-09 Thread lakeuk
Looks like there is still life in the old dog (svg) yet, in the latest version of Google Maps code that developers can access through the Google Maps API, Google have added functions for using SVG with the maps. http://jibbering.com/blog/?p=179 http://groups.google.co.uk/group/Google-Maps-API

[svg-developers] Re: get screen size in batik squiggle browser

2006-02-09 Thread Tonny Kohar
Hi, You could use Java AWT Toolkit to query Screen size. Toolkit toolKit = Toolkit.getDefaultToolkit().getScreenSize() Regards Tonny Kohar -- Sketsa SVG Graphics Editor http://www.kiyut.com - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/sv

Re: [svg-developers] Re: get screen size in batik squiggle browser

2006-02-09 Thread senthilnathan kannan
Dear Andreas Neumann, I am not trying to get the screen width and height of the SVG canvas.Instead I am trying to get the computers sccreen resoultion and set the svg root's viewbox to match the computer screen resolution. I certainly appreciate your reply. Any further input will be h