Re: [svg-developers] Re: SVG map example recap

2004-12-03 Thread andré m. winter
hi peter, What do you mean by generalize your map? Remove points based on the scale being displayed? what ever process the base data for your map comes out, it generally holds many many unneeded vertices (points). reasons may be automated vectorisation, description of curves as straigt

RE: [svg-developers] Permission denied problem

2004-12-03 Thread Chris Peto
Hi, Try this.open or just open. In win XP just must use a full path when using open or setting location. Mit freundlichen Grüßen/Regards Chris Peto Freelance System Development, Resource Solutions Founding Partner, Vectoreal - Germany Mobile: +49 (0)

[svg-developers] ENJOY FREE CALLING CARDS

2004-12-03 Thread leocalup
If you do not like having to refer your friends, Message-ID: [EMAIL PROTECTED] User-Agent: eGroups-EW/0.82 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Length: 272 X-Mailer: Yahoo Groups Message Poster X-Originating-IP: 202.54.51.5 X-Yahoo-Newman-Property:

[svg-developers] onscroll event stopPropagation ???

2004-12-03 Thread Jean-David Benamou
Hi, how do I stop the mousedown event to propagate in the DOM tree when the user uses the inbuilt scrolling (alt key + mouse) Thanks JD Yahoo! Groups Sponsor ~-- $9.95 domain names from Yahoo!. Register anything.

[svg-developers] Exception from external css in ASV3.x

2004-12-03 Thread Chris Peto
Hi Peter, I just wanted to let you know that I found the exception in IE5+ and ASV3.x. It comes from loading a svg with an external stylesheet(css). So beware anybody using external css's, especially if the svg is loaded before the last svg was finished. Mit freundlichen Grüßen/Regards Chris

Re: [svg-developers] Zoom without pixel replication

2004-12-03 Thread Peter Thompson
Thanks for the response. I'll see what I can do with the fonts - Do you Yahoo!? Dress up your holiday email, Hollywood style. Learn more. [Non-text portions of this message have been removed] Yahoo! Groups Sponsor

[svg-developers] Is onkeypress Event Supported By SVG Standard?

2004-12-03 Thread HektorK
Hi everyone, The Adobe SVG Web site gives samples with code using the onkeypress event. Is it a standard supported by the W3C? I couldn't find anything in the W3C Web site... Regards, Hektor Konomi frogware, inc 477 richmond street west, suite 210 toronto, on m5v 3e7 tel.: 416 216 4700 ext.

Re: [svg-developers] Stroking small text

2004-12-03 Thread Jerrold Maddox
Have you tried a smaller stroke width - stroke-width:0.1, for instance? Jerry Hi! I want to display text with a small white line around it, like this: http://kart.nois.no/test/svgtext/text.gif.http://kart.nois.no/test/svgtext/text.gif. Stroking the text seems to obscure the text itself. I'm

RE: [svg-developers] Stroking small text

2004-12-03 Thread Doug Schepers
Hi, Jerry- I tried that, but it rendered the outline all but invisible. When I made the text bold, I got slightly better results. The problem is that the stroke is overlapping the interior of the glyphs. This should be fixed in SVG1.2, where you'll be able to have finer control over stroking,

[svg-developers] Re: Is onkeypress Event Supported By SVG Standard?

2004-12-03 Thread Martin Honnen
--- In [EMAIL PROTECTED], [EMAIL PROTECTED] wrote: The Adobe SVG Web site gives samples with code using the onkeypress event. Is it a standard supported by the W3C? I couldn't find anything in the W3C Web site... Key events are not standardized in the W3C DOM Level 2, I think mainly as

[svg-developers] clip-Path bug in script

2004-12-03 Thread rohit_thakare
I am having this really stupid problem in my script and am not able to fix it. All I am trying to do is apply the clip-path 'RectView' in the script below to the group 'graphlines'. Everytime I do that the entire 'graphlines' object disappear. Any ideas. Thanks - Rohit svg width=800

[svg-developers] Re: Stroking small text

2004-12-03 Thread skatethere
--- In [EMAIL PROTECTED], scalablev [EMAIL PROTECTED] wrote: Hi! I want to display text with a small white line around it, like this: http://kart.nois.no/test/svgtext/text.gif. Stroking the text seems to obscure the text itself. I'm not getting exactly what I want with a filter

[svg-developers] Re: clip-Path bug in script

2004-12-03 Thread skatethere
--- In [EMAIL PROTECTED], rohit_thakare [EMAIL PROTECTED] wrote: I am having this really stupid problem in my script and am not able to fix it. All I am trying to do is apply the clip-path 'RectView' in the script below to the group 'graphlines'. Everytime I do that the entire

[svg-developers] svgx-yo,1st diary stuff

2004-12-03 Thread Michael Bolger
Greetings, posted my first diary entry at; http://svg.org/?op=displaystory;sid=2004/12/3/182929/110 for me -mpb (:)) concerning foundation stuff (1) including new stuff at http://www.svgx.org -encourage new folks to participate at svg.org, I like the casual nature of the Diary. a toast

RE: [svg-developers] Re: Stroking small text

2004-12-03 Thread Doug Schepers
Nice work, Kirby. If they don't want the outline to be blurry, they can just do this: filter id='halo' filterUnits='objectBoundingBox' x='-15%' y='-15%' width='130%' height='130%' feColorMatrix in='SourceAlpha' result='white' type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0

[svg-developers] tool tips --on mouse over

2004-12-03 Thread dandiya
I am trying to implement a tool tip for a mouseover event in svg,This is the code I wrote inside my java script file. var q = svgdoc.createElement('a'); q.setAttributeNS ('http://www.w3.org/2000/xlink/namespace/','xlink:href',sysLink); p.appendChild(t); p.appendChild(_title);

RE: [svg-developers] tool tips --on mouse over

2004-12-03 Thread Doug Schepers
Hi, Ravi- I'm not sure why you thought that would work. There are no native tooltips in SVG (yet, though SVG1.2 changes that), and there is no 'alt' attribute for SVG elements. (Also, it's not typically safe to try the dot-accessor method of accessing attributes, and you should be using the

[svg-developers] Re: Sending SVG to the printer

2004-12-03 Thread Samuel Dagan
Hi Jean-Loup, It seems to me that the problem could be the use of an external css file. Look at the message number 46361 for such a problem. Cheers, Samy --- In [EMAIL PROTECTED], [EMAIL PROTECTED] wrote: Hi Samy, My DOCTYPE is slightly different from yours but the xmlns is the same

[svg-developers] Re: clip-Path bug in script

2004-12-03 Thread rohit_thakare
Thanks a lot. It worked. - Rohit --- In [EMAIL PROTECTED], skatethere [EMAIL PROTECTED] wrote: --- In [EMAIL PROTECTED], rohit_thakare [EMAIL PROTECTED] wrote: I am having this really stupid problem in my script and am not able to fix it. All I am trying to do is apply the

[svg-developers] Expanding and collapsing sections of bargraphs using SVG - Can it be done?

2004-12-03 Thread Patricia LaRue
Hi, all: Apparently, my subject line didn't contain enough information. Sorry about that. So, I've included my previous message here and more detail below. Okay, I'm ready to research and learn how to do this but I need an expert opinion on the best way to do this or if this can even be

RE: [svg-developers] Expanding and collapsing sections of bargrap hs using SVG - Can it be done?

2004-12-03 Thread Philip Mansfield
Patricia, The obvious way to do this is to use JavaScript to compute the new positions of the bars, and set the value of a transform attribute on a g element. A more clever way to do this is to make the bars glyphs in an SVG font, then write out the graph as a text string. Since the

[svg-developers] Re: tool tips --on mouse over

2004-12-03 Thread dandiya
Hi Doug In the example you posted http://svg-whiz.com/samples.html#insertShapes how come the title and desc are not visible along with the shapes even though you have generated both and appended them. Are title/desc triggered only on a particular event? -Ravi

[svg-developers] Re: Stroking small text

2004-12-03 Thread scalablev
Thanks Kirby and Doug! This is something I can use. --- In [EMAIL PROTECTED], Doug Schepers [EMAIL PROTECTED] wrote: Nice work, Kirby. If they don't want the outline to be blurry, they can just do this: filter id='halo' filterUnits='objectBoundingBox' x='-15%' y='-15%'