Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

svg-developers · SVG Developers

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 8775
  • Category: Data Formats
  • Founded: Aug 16, 1999
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 65626 - 65655 of 66120   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
65626 Andi Neumann
neumannandreas Send Email
Apr 2, 2012
1:51 pm
Hi David, At about every occasion I see Microsoft and OpenOffice developers I am trying to convince them to support SVG as a static image format in their...
65627 Arif Burhan
aburhan2000 Send Email
Apr 3, 2012
12:03 am
Hello all, I found a coding error, which Chrome is intolerant of, but Firefox, Opera and Seamonkey accept: Chrome requires all filters to be within...
65628 Arif Burhan
aburhan2000 Send Email
Apr 3, 2012
12:03 am
Not a fault with Opera, but Google Chrome:   look at:    www.irony-maiden.com/SVG/ringsbrightwater.htm   Doesn't show anything in Chrome - probably too...
65629 Arif Burhan
aburhan2000 Send Email
Apr 3, 2012
12:03 am
What I do is1. Display image with Opera2. Press [Prt Sc] key3. Paste [Ctrl-V] into MS-Paint -- trim edges if required. Don't know if Step 3 Works with a vector...
65630 Daniel Bergqvist
danielb987 Send Email
Apr 3, 2012
12:04 am
I suggest that you install a PDF printer driver and then print the document in IE/Opera to the PDF driver. Search "print to pdf" in google for PDF printer...
65631 David Dailey
ddailey@... Send Email
Apr 3, 2012
1:24 am
In the mid 1980's I played a bit with MacPascal and wrote a simple thing that overlaid XOR bitblt's of circles at random locations to create some interesting...
65632 David Dailey
ddailey@... Send Email
Apr 3, 2012
1:33 am
Thanks to all who offered suggestions here. I think I'll go this direction. I used to print to PostScript files with similar effect, so this makes sense. Using...
65633 Erik Dahlstrom
erida539 Send Email
Apr 3, 2012
8:25 am
On Mon, 02 Apr 2012 21:13:04 +0200, Arif Burhan <aburhan2000@...> ... I'd suggest filing a bugreport on webkit instead, http://bugs.webkit.org. -- Erik...
65634 Chris Peto
ressol2002 Send Email
Apr 3, 2012
10:30 am
Hi, Does anybody know how to, hopefully over js, stop the back button in Safari? Thanks, Chris [Non-text portions of this message have been removed]...
65635 meikelneu Send Email Apr 3, 2012
3:07 pm
... Last time I checked Opera will print only bitmaps from SVG, even to a Postscript Printer. ASV for sure allways rasterizes, although the print resolution...
65636 Arif Burhan
aburhan2000 Send Email
Apr 4, 2012
12:10 am
I am creating arrowheads using the <marker> tag. I would like the arrowhead to be the same colour as the shaft using a statement like  fill="inherit&quot; ...
65637 Daniel Schneider
danielkschne... Send Email
Apr 4, 2012
11:27 pm
Hi folks, Scenario: Write an HTML text. Get SVG pics from a website like openclip.org. Embed, CSS float and adjust size of the SVG. Is there a canonical easy...
65638 stardrive.engineering...
stardrive.en... Send Email
Apr 4, 2012
11:27 pm
Hi All, I'm presently assembling many glyphs across a set of SVG files. The way I'm formatting the SVG files is just like is shown here :...
65639 David Dailey
ddailey@... Send Email
Apr 5, 2012
1:16 am
http://cs.sru.edu/~ddailey/svg/V12.svg In the bottom right illustration on this page, note how the diagonal lines (created through varying both size and...
65640 Erik Dahlstrom
erida539 Send Email
Apr 5, 2012
9:11 am
On Thu, 05 Apr 2012 03:16:27 +0200, David Dailey ... Your can modify your pattern tiles, e.g like this: <pattern id="NL1" patternUnits="userSpaceOnUse"...
65641 David Dailey
ddailey@... Send Email
Apr 5, 2012
12:18 pm
Yes, thanks Erik, that seems to do it (except for IE9 where the line-breaks still persist). I cleaned up the code a bit (using <use>) and updated the example...
65642 jamesd
jcdeering1 Send Email
Apr 5, 2012
11:43 pm
I have a scroll Down button for a SVG database display. It works great, but I would also like to have an Up button. Anyway to reverse this process? I could not...
65643 Daniel Bergqvist
danielb987 Send Email
Apr 6, 2012
12:31 am
I don't have a solution but an idea of that might have happend. Look att the image: http://www.mjtrafik.se/temp/temp/svg_pattern.png I have drawn some thin...
65644 Alireza
ahmadi_rad Send Email
Apr 6, 2012
12:31 am
Hello I need help for finding extents of an svg drawing. Please take a look at this example: <svg id="SVG1" width="5cm" height="5cm" viewBox="0 -100 200 200"> ...
65645 Benjamin Podszun
dar@... Send Email
Apr 6, 2012
12:31 am
Hi. I recently started discovering svg, mostly by falling in love with d3.js. I know that <text> has no background. It seems that question comes up on the net...
65646 Marty Sullivan
dark3251 Send Email
Apr 6, 2012
2:59 am
I can't say if that's the issue or not, but that's a very astute observation. ... [Non-text portions of this message have been removed]...
65647 yannick.bochatay@... Send Email Apr 6, 2012
7:10 am
Hi James, you can use window.scrollTo(0,0). https://developer.mozilla.org/en/Window.scrollBy https://developer.mozilla.org/fr/DOM/window.scrollTo Yannick ... ...
65648 yannick.bochatay@... Send Email Apr 6, 2012
7:23 am
Hi, if all your shapes are included in a g element, you can use the getBBox method on this node to get the dimensions. In your example : ...
65649 yannick.bochatay@... Send Email Apr 6, 2012
7:44 am
Hi Ben, since the getBBox method returns a SVGRect object, it's only few lines of javascript to create/update a rect element behind your text element, no math...
65650 yannick.bochatay@... Send Email Apr 6, 2012
11:44 am
Hi Chris, All you can do is dealing with the HTML5 history API, but you can't really stop the back button, and it's not advisable. ...
65651 jamesd
jcdeering1 Send Email
Apr 6, 2012
5:24 pm
yannick.bochatay@... wrote: you can use window.scrollTo(0,0). No you can't, not if you want the presentation to be scalable. The retina display and HDTV...
65652 Marty Sullivan
dark3251 Send Email
Apr 8, 2012
4:14 pm
Really, the only way to simulate this in all browsers would be to have a blank landing page that redirects you to the actual page. This way, when they click...
65653 Alireza
ahmadi_rad Send Email
Apr 9, 2012
10:48 am
Thanks, I wished I could find a tag or attribute for this but this is also useful. Anyhow thanks...
65654 Benjamin Podszun
dar@... Send Email
Apr 9, 2012
10:48 am
Hey Yannik. Thanks for getting back to me. My issue is really not a math problem. I just don't currently have a good way to grab that element. My graph is...
65655 David Dailey
ddailey@... Send Email
Apr 9, 2012
11:21 am
No, I don’t believe there is any such tag or attribute to set the viewBox so that it will hold all drawn contents of a drawing. I could see the value,...
Messages 65626 - 65655 of 66120   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help