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: 8776
  • 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 61037 - 61066 of 66120   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
61037 Erik Dahlström
erida539 Send Email
Sep 5, 2008
11:00 am
... What's implemented currently (internal Opera builds only at this time) is not an event, but a DOM attribute on the SVGSVGElement interface called...
61038 Fulio Pen
fuliopen Send Email
Sep 5, 2008
4:40 pm
I wrote my svg code myself for long time, as my graphics were always simple. Recently I tried the Inkscape on a file, but had some problems. When opening the...
61039 Fulio Pen
fuliopen Send Email
Sep 5, 2008
4:47 pm
Dear group members: I should have saved my last message for further writing, but accidentally pressed the 'send' button. Please disregard that message. I...
61040 Frank Bruder
redurbf Send Email
Sep 5, 2008
5:15 pm
... bit from there, there's even a complete example of how to use it). ... whatever color you need using the normal svg syntax for colors, and by giving the...
61041 Frank Bruder
redurbf Send Email
Sep 6, 2008
11:55 pm
Hello, everyone who publishes online comics in SVG format might be interested in this. My comic lettering font, Tomson Talks, is now available from the Open...
61042 gfc22 Send Email Sep 7, 2008
8:50 pm
I expect this is a FAQ, but Google doesn't offer anything relevant: I have text labels in scalable SVG groups. I want the positions of the labels to scale with...
61043 selma_ikiz Send Email Sep 7, 2008
8:50 pm
Hi, I have an inkscape file with images and text overlays which annotate the features in images. I want those text objects to be searchable in SVG. For example...
61044 Robert Longson
longsonr Send Email
Sep 7, 2008
10:55 pm
... Searching SVG text is not yet supported in Firefox https://bugzilla.mozilla.org/show_bug.cgi?id=330045. Patches are always welcome though :-) Best regards ...
61045 Dailey, David P.
david.dailey@... Send Email
Sep 7, 2008
11:50 pm
Hi Robert, In case anyone tries to follow the https://bugzilla.mozilla.org/show_bug.cgi?id=330045. they should leave off the period at the end of that...
61046 Erik Dahlström
erida539 Send Email
Sep 8, 2008
7:39 am
... Thanks, I've raised this as an issue for a future SVG spec revision [1]. If there's further feedback on this topic, please post to the www-svg@... list...
61047 John Delacour
valchiusella Send Email
Sep 8, 2008
10:34 pm
I've been developing a drawing initially using Gran Paradiso (Firefox latest build) until I discovered how far superior the latest Opera is for SVG and...
61048 Peter Thompson
plthompson2004 Send Email
Sep 9, 2008
12:25 am
Does this do what you want? <?xml version="1.0"?> <svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"> <circle cx="50" cy="200" r="2"...
61049 Robert Longson
longsonr Send Email
Sep 9, 2008
7:10 am
... The problem with this example is the space rather than the fact that it is negative. No whitespace is allowed in coordinates according to the SVG...
61050 Samuel Dagan
samydagan Send Email
Sep 9, 2008
2:32 pm
Hi John, I am using successfully negative coordinates all the time. The problem you have is not the negative coordinate, but you wrote y="-12 " instead of...
61051 Andreas Neumann
neumannandreas Send Email
Sep 9, 2008
3:02 pm
Hi John, I agree that Opera 9.5 is currently the best browser based SVG implementation. But Webkit/Safari and Firefox are catching up quickly. Firefox has...
61052 Andreas Neumann
neumannandreas Send Email
Sep 9, 2008
3:12 pm
Hi SVG developers, After a successful SVG Open 2008 conference in Nuremberg, Germany, we are looking into organizing SVG Open 2009. Several people have...
61053 Fulio Pen
fuliopen Send Email
Sep 9, 2008
7:40 pm
hello, I am trying to replace the English object names in an svg file with Chinese ideographic writing. My purpose to compare the features of English and...
61054 John C. Turnbull
qu0ll64 Send Email
Sep 9, 2008
8:12 pm
Forgive me if this is a bit obvious but I notice that when viewing an SVG in a browser, the browser seems to control what happens when the right mouse button...
61055 Jeff Schiller
jeff_schiller Send Email
Sep 10, 2008
5:12 am
This appears to be a simple problem, but sadly I haven't yet figured out a solution. - contained within the bounding box of a rectangle is a circle - only when...
61056 Tonny Kohar
tonny_kohar Send Email
Sep 10, 2008
5:17 am
KIYUT just released Sketsa SVG Editor 5.3.2, a cross platform vector drawing application based on SVG. It features various tools for optimizing content...
61057 Jeff Schiller
jeff_schiller Send Email
Sep 10, 2008
5:52 am
... Next iteration (that actually works most of the time): <svg xmlns="http://www.w3.org/2000/svg"> <rect id="outer"; pointer-events="none" width="300"...
61058 Erik Dahlström
erida539 Send Email
Sep 10, 2008
7:47 am
... In Opera each user must manually allow right-clicks to be handled by scripts: Tools > Preferences > Content > JavaScript Options... > Allow scripts to...
61059 John C. Turnbull
qu0ll64 Send Email
Sep 10, 2008
7:57 am
Thanks Erik, So do you know if this is typical of the way browsers work in this regard? Is it fair to say then that, in general, SVG documents/apps cannot or...
61060 Andreas Neumann
neumannandreas Send Email
Sep 10, 2008
8:15 am
Hi JCT, You can use evt.preventDefault(); at the end of the function that is triggered by the event to suppress the default context menu of the browser. You'd...
61061 Jonathan Chetwynd
jonathan9670 Send Email
Sep 10, 2008
9:28 am
Fulio, mileage may vary but this works for me in Opera: <svg> <text> moon: 月 </text> </svg> obviously you'll want to improve on this in a number of...
61062 bjorsq Send Email Sep 10, 2008
11:34 am
Hi Fulio, The code you posted has no chance of working in SVG because innerText is not part of the SVG DOM - you need to first clear all the children of the...
61063 gfc22 Send Email Sep 10, 2008
4:27 pm
Thanks Peter, That looks good for what I asked for. But unfortunately I also want some lines to remain the same width under scaling. So I've gone ahead and...
61064 Dailey, David P.
david.dailey@... Send Email
Sep 10, 2008
5:05 pm
My first thought was to create some sort of class or even a range of object id's that would allow all the things you want not to scale to be identified, and...
61065 Luis Vielva
luisvielva Send Email
Sep 10, 2008
5:47 pm
Dear svg developers, I would like to call your attention to the new release of iPod touch (and iPhone) firmware made yesterday. I have installed it and...
61066 Luis Vielva
luisvielva Send Email
Sep 10, 2008
5:55 pm
Dear svg developers, I would like to call your attention to the new release of iPod touch (and iPhone) firmware made yesterday. I have installed it, and the...
Messages 61037 - 61066 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