[svg-developers] getBBox() error

2006-02-16 Thread RODOLFO MORENO LLACZA
Hi everybody I am doing my tooltip in SVG. I have tried in two ways. FIRST WAY: this is my SVGDOC: Label in "tooltipBoxLabel" assign dynamically the text. Next I use: This is my code in JavaScript var myWidth = svgdoc.ElementById('toolti

[svg-developers] Re: Varying line width with different x and y scaling

2006-02-16 Thread robert_muetzelfeldt
Thanks, Phi and Samy, for your suggestions. I'm not sure, Phi, how using a element would help: I'm drawing each part of the graph plot with a short element, so already have a lot of control over things. Yes, Samy, I could use scripting to calculate the require stroke-width value for each e

[svg-developers] Re: scaling & stroke width

2006-02-16 Thread Samuel Dagan
Hi Andreas, Yes, but is not simple. Look at my message 54458. Cheers, Samy --- In svg-developers@yahoogroups.com, "Andreas Neumann" <[EMAIL PROTECTED]> wrote: > > no, > > but SVG 1.2 introduces a non-scaling stroke, since so many people require this. > > See: > http://www.w3.org/TR/2005/WD-S

[svg-developers] Re: scaling & stroke width

2006-02-16 Thread Andreas Neumann
no, but SVG 1.2 introduces a non-scaling stroke, since so many people require this. See: http://www.w3.org/TR/2005/WD-SVGMobile12-20051207/painting.html#NonScalingStroke For now you need to re-calculate stroke-widths after each zoom in or viewBox change. Andreas --- In svg-developers@yahoogr

Re: [svg-developers] scaling & stroke width

2006-02-16 Thread Nicolas Decoster
Sean a écrit : > Is there a way to scale without affecting stroke width? > > Sean I'm also very interseted by this topic. For now the only thing i do is something like : scale(a) stroke-width = theWidthIActuallyWant / a Unfortunatelly, this doen't work for different scaling on x and on y

[svg-developers] scaling & stroke width

2006-02-16 Thread Sean
Is there a way to scale without affecting stroke width? Sean - 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 the web, go to: http://groups.y

Re: Rép. : [svg-developers] Convert svg node to string

2006-02-16 Thread sent1729
Hi Jerome, Iam using Batik squiggle browser, and I think PrintNode is not implemented in Batik. I think PrintNode works with mozilla brower. Thanks You. It would be great to know if there is a way to achieve this in Batik Squiggle browser. Nathan --- In svg-developers@yahoogroups.com, "Jérom

[svg-developers] Re: javascript & svg & embed

2006-02-16 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, "Erwan TROEL" <[EMAIL PROTECTED]> wrote: > > that doesn't change anything at all Consider a posting a URL where the problem occurs. My suggested change should avoid error messages while before you said you got one in the JavaScript console. - To un

[svg-developers] Many transform attributes and performance

2006-02-16 Thread Sean
I'm wondering what how using a lot of transform attributes, ie, translate, scale, and rotate, affects the performance of an svg. Is it minimal or significant? My file size will exceed 500k. Thank you. Sean - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.ya

Rép. : [svg-developers] Convert svg n ode to string

2006-02-16 Thread Jérome de la Goutte
Hi Nathan Try PrintNode(node) Jérôme --- Jérôme de la Goutte Responsable de projet ISAGRI Ingéniérie E-mail : [EMAIL PROTECTED] Site web : www.terre-net.fr & www.isagri.fr tel: 03 44 06 84 04 fax: 03 44 06 55 61 >>> [EMAIL PROTECTED] 16/02/2006 17:40 >>> Hi A

[svg-developers] Convert svg node to string

2006-02-16 Thread sent1729
Hi All, Is it possible to convert SVG node to string. I have done the reverse process using node = ParseXML(String,doc), which converts a string to an SVG node. Any help is greatly appreciated. Nathan - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yah

[svg-developers] Adobe SVG ActiveX on PocketPC

2006-02-16 Thread Jeroen Vanattenhoven
Hello, I've tried the C# Wrapper for the Adobe SVG Plugin on desktop. That way you can use that viewer in development on desktop (allowed?). Has anyone been succesfull in using the Adobe SVG Plugin for development on PocketPC. I've tried but I can't get the ActiveX plugin registered on the dev

Re: [svg-developers] Re: javascript & svg & embed

2006-02-16 Thread Erwan TROEL
that doesn't change anything at all - Original Message - From: "Martin Honnen" <[EMAIL PROTECTED]> To: Sent: Thursday, February 16, 2006 4:01 PM Subject: [svg-developers] Re: javascript & svg & embed --- In svg-developers@yahoogroups.com, "Erwan TROEL" <[EMAIL PROTECTED]> wrote: > > j'

[svg-developers] Dynamically create dragable shapes

2006-02-16 Thread chmavrog
Hello everyone, I have looked how to enable drag and drop functionality on already drawn shapes with svg. If a i want to draw dynamically various shapes(rects,circles etc) could anybody give me a hint how to make them dragable? Also the scripts i run into all suggest that under the shapes i want

[svg-developers] Re: getURL - postURL

2006-02-16 Thread chmavrog
Thanks a lot for the advice --- In svg-developers@yahoogroups.com, "Andreas Neumann" <[EMAIL PROTECTED]> wrote: > > Hi, > > I would very much suggest not to rely entirely on getURL(). The > various viewers out there support different loading mechanisms, f.e. > some support XMLHttpRequest()

[svg-developers] javascript & svg & embed

2006-02-16 Thread Erwan TROEL
i create an html page (in which i associate javascript pages) which embed an svg in this svg i wrote: http://www.w3.org/2000/svg"; the function initMap(evt) stands on a javascript page associate to the html page as i said formerly this runs well with IE but not with firefox the javascript

Re: [svg-developers] javascript & svg & embed

2006-02-16 Thread sidonie
in the svg file, try this : > j'ai une feuille html (à laquelle j'associe des javascripts) > > qui embed un svg > > dans ce svg j'ai: > > > onload="initMap(evt);" onresize="resetFactors(evt);" viewBox="0 0 1024 768" > zoomAndPan="mag

[svg-developers] Re: Varying line width with different x and y scaling

2006-02-16 Thread Samuel Dagan
Hi Robert, If you use scripting to make the scaling instead of the transformation, just by changing the values of the coordinates, according to your request for the scaling, then you have solved the problem. Cheers, Samy --- In svg-developers@yahoogroups.com, Phi Tran <[EMAIL PROTECTED]>

[svg-developers] Re: javascript & svg & embed

2006-02-16 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, "Erwan TROEL" <[EMAIL PROTECTED]> wrote: > > j'ai une feuille html (à laquelle j'associe des javascripts) > > qui embed un svg > > dans ce svg j'ai: > > > http://www.w3.org/2000/svg"; > > > la fonction initMap(evt) est presente dans un javascript assoc

[svg-developers] javascript & svg & embed

2006-02-16 Thread Erwan TROEL
j'ai une feuille html (à laquelle j'associe des javascripts) qui embed un svg dans ce svg j'ai: http://www.w3.org/2000/svg"; la fonction initMap(evt) est presente dans un javascript associé à la feuille html cela marche tres bien avec IE pas avec firefox: la console javascript firefox d

[svg-developers] Re: getURL - postURL

2006-02-16 Thread Andreas Neumann
Hi, I would very much suggest not to rely entirely on getURL(). The various viewers out there support different loading mechanisms, f.e. some support XMLHttpRequest() but not getURL(). In order to support both approaches (and potentially more in the future) I suggest writing a wrapper functi

[svg-developers] Re: with svg files problem

2006-02-16 Thread erikvail
Actually it does not work for me in IE 6 and Adobe Viewer 3.03 Build 94. Thanks Erik --- In svg-developers@yahoogroups.com, "Robert Russell" <[EMAIL PROTECTED]> wrote: > > Right. The SVG standard says that what you're doing is correct, but > Firefox doesn't support it. See #4 in the list at > htt

[svg-developers] do you know the SVG Animation Player(opensource)?

2006-02-16 Thread neoblueis
hi~ i'm found the svg animation player.. with source i can't resolved the many problem to animate svg file. please help me ^^;;; web site link... or book.. etc.. - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and clic