RE: [svg-developers] Re: Mozilla Native SVG

2005-06-02 Thread Richard Gnyla
Thanks Andreas I added the MIME types on the server and hey presto it all works. Richard -Original Message- From: svg-developers@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andreas Neumann Sent: 02 June 2005 10:30 To: svg-developers@yahoogroups.com Subject: [svg-developers]

Re: [svg-developers] tree and svg

2005-06-02 Thread Jérôme Tricand de la Goutte
Hi Erwan, What kind of information do you plan to get with your functions? but if you want a recursive function, try this function getChild(obj) { $tab=obj.childNodes; if($tab.length!=0) for $i=0; $i$tab.length; $i++) getChild($tab.item($i)); else alert('No

Re: [svg-developers] Re: Mozilla Native SVG

2005-06-02 Thread Chris Lilley
On Wednesday, June 1, 2005, 6:59:21 PM, Andre wrote: AMWCn hi, AMWCn i read about a switch somewhere in the options that enables or disables AMWCn SVG rendering by FF. the default is disabled. sorry don't have it by AMWCn hand right now nor tried yet, so cannot give you more precise advice. The

Re: [svg-developers] tree and svg

2005-06-02 Thread Jérôme Tricand de la Goutte
what about function findAllChild() { getChild(document.getElementById('mySVG'); getChild(document.getElementById('myClonedSVG'); } Am I missing something? Erwan TROEL a écrit : this code traverse only a parent to his children but how to when there are many parents - Original

[svg-developers] modify mousecursor in a graphical element

2005-06-02 Thread alex_philippi
Hi, I want to modify the mouse coursor if I hover over a rect-Element. I looked at the W3C Rec. (http://www.w3.org/TR/SVG/interact. html#Cursors) but I dont understand where I have to set cursor: pointer. I try it that way: rect onmousemove=... onmouseout=... x=470 y=1260 width=170 height=110

[svg-developers] Beck Sonderzeichen

2005-06-02 Thread vinmoc
On Windows machines with the Beck Sonderzeichen font installed, the Adobe SVG Viewer does not seem to like Arial anymore: all text that would otherwise be displayed in Arial is rendered using the Beck font - including the version number in the about box! If I remove Beck Sonderzeichen,

[svg-developers] Re: modify mousecursor in a graphical element

2005-06-02 Thread campin_b
Hi, Your code is correct I assume you are using ASV3. The cursor is not implemented in Adobe SVG viewer 3 Try the ASV 6 pre-release if you want it. Ben --- In svg-developers@yahoogroups.com, alex_philippi [EMAIL PROTECTED] wrote: Hi, I want to modify the mouse coursor if I hover over a

[svg-developers] Re: modify mousecursor in a graphical element

2005-06-02 Thread alex_philippi
--- In svg-developers@yahoogroups.com, campin_b [EMAIL PROTECTED] wrote: Hi, Your code is correct I assume you are using ASV3. The cursor is not implemented in Adobe SVG viewer 3 Try the ASV 6 pre-release if you want it. Ben Thnx a lot :) It works now. Has the ASV 6 alpha some major

[svg-developers] Re: Strange Line in SVG

2005-06-02 Thread jayraghu04
Hi Andrew, Thanks for your information. After your suggestion I got the solution. Thank u very much... :) Regards Raghu --- In svg-developers@yahoogroups.com, andrewgirow [EMAIL PROTECTED] wrote: Raghu, This shows that the problem is - your too big coordinates. The difference

[svg-developers] open a new Browserwindow in SVG?

2005-06-02 Thread alex_philippi
Hi, I have to open a new window if I click on a rect Element. This new window must have custom width/height settings. I tried it with javascript and then with the xlink statement. Javascript don´t work (window.open dont open a new window) and with the xlink (a href xlink:... target=_blank