Skip to search.
svg-developers · SVG Developers

Group Information

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

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

  Messages Help
Advanced
Messages 63063 - 63092 of 65684   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
63063 israel_eisenberg
israel_eisen... Online Now Send Email
Dec 1, 2009
6:54 pm
Narendra, Richard, Brad thanks. ... I knew one day someone will find something practical to do with my articles :)...
63064 profileofpradeep
profileofpra... Offline Send Email
Dec 2, 2009
12:36 am
Dear Sir, Thank you for extending your suggestion. The requirement of my academic project is to support Max browsers across multiple platform. Thus Grabbing...
63065 narendra sisodiya
skysoft_siso... Offline Send Email
Dec 2, 2009
6:07 am
... what details I need to post ? setp 1 -- try to draw some svg shapes from JS files. I mean just use createElementNS type ...
63066 Lontry
jkaspet Offline Send Email
Dec 2, 2009
9:29 am
Hello, Does anyone know where I can download the bundle with all SVG DTDs? I was not able to find it on w3 website. When my DOM parser parses SVG file it...
63067 Cameron McCormack
heycam_yg Offline Send Email
Dec 2, 2009
10:56 am
Hi, ... http://www.w3.org/Graphics/SVG/1.1/DTD/ If you’re referencing http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd then you’ll need to grab that file...
63068 peterbyers1@...
peterbyers1... Offline Send Email
Dec 2, 2009
8:40 pm
Help Please I am a "Sortof Newbe SVG Scripter" i managed to cobble together a script. It is not pretty but it nearly does what I want it to do !! It can be...
63069 peterbyers1@...
peterbyers1... Offline Send Email
Dec 3, 2009
1:01 pm
... Sorry - should have said that it only seems to work in Internet Explorer with Adobe AddOn installed...
63070 volleyballer8 Offline Send Email Dec 4, 2009
1:07 pm
hi, how do i have to configure IIS (6) to serve svgz-files so that both browsers (IE & firefox) could show it? mime-types for svg and svgz were already...
63071 Francis Hemsher
fhemsher Offline Send Email
Dec 4, 2009
6:51 pm
Hi Peter, try: <g id="earStopButton" visibility="hidden"> <a xlink:href="" onmouseover="hideStopEar()"> <rect x="250" y="1" width="50" height="70" rx="5"...
63072 heldermagalhaes Offline Send Email Dec 5, 2009
9:26 am
Hi Volleyballer8, ... You'll find generic information about this in the community site [1]. Detailed information about server configuration (including...
63073 peterbyers1@...
peterbyers1... Offline Send Email
Dec 6, 2009
1:22 am
Thank you Francis...
63074 Bryan Berry
bryanbryanb Offline Send Email
Dec 7, 2009
11:19 am
http://karma.sugarlabs.org/examples/Conozco-Uruguay/ On this page I have a <text> element positioned on top of a white rectangle. Currently, I stick in...
63075 narendra sisodiya
skysoft_siso... Offline Send Email
Dec 7, 2009
12:15 pm
may be this will help - http://apike.ca/prog_svg_text.html http://stackoverflow.com/questions/475804/svg-word-wrap-show-stopper Perhaps we need to write some...
63076 Bryan Berry
bryanbryanb Offline Send Email
Dec 7, 2009
12:56 pm
wow, this is really, really ugly narendra tks for pointing to these sites. Looks like there isn't an easy way out . I will create some kind of helper function...
63077 Jake B
otakuj462 Offline Send Email
Dec 7, 2009
1:52 pm
Hi Bryan, There are a few ways to do this: First, text wrapping in a text area is something that is supposed to be addressed by SVG 1.2 Tiny: ...
63078 steltenpower Offline Send Email Dec 8, 2009
3:02 am
Load http://steltenpower.com/sudosvg.php in Opera and click some of the yellow rectangles. Now do the same in Firefox....
63079 Bryan Berry
bryanbryanb Offline Send Email
Dec 8, 2009
3:20 am
Thanks Jake, I will let u know what happens. I am targeting Firefox and webkit-based browsers so TextArea is a no-go. I will play w/ the foreign object but I...
63080 Bryan Berry
bryanbryanb Offline Send Email
Dec 8, 2009
4:33 am
hey folks, adding foreignObject works beautifully and it isn't too difficult to access it with a css selector, though there seems to be some quirks I embed the...
63081 Cameron McCormack
heycam_yg Offline Send Email
Dec 8, 2009
4:44 am
... Just looking at the source, you’re calling setAttributeNS() and passing in the SVG namespace, when it should be the null namespace. I don’t know if...
63082 Erik Dahlstrom
erida539 Offline Send Email
Dec 8, 2009
9:39 am
On Tue, 08 Dec 2009 04:02:07 +0100, steltenpower <yahoo@...> ... You probably meant setAttributeNS(null, ...), right? Cheers /Erik -- Erik...
63083 Bryan Berry
bryanbryanb Offline Send Email
Dec 8, 2009
11:39 am
I have encountered some strange css behavior: I have found that if I have an inline stylesheet as I do here ...
63084 steltenpower Offline Send Email Dec 8, 2009
12:32 pm
Thanks Erik and Cameron, Of course that was indeed the problem. Which turns my question around to "my script correctly made nothing happen in Firefox, but did...
63085 Bryan Berry
bryanbryanb Offline Send Email
Dec 9, 2009
11:29 am
thanks to csmfrx I found a work around for chromium and Firefox 3.5 $('#someId', svgDocRoot).attr('style', 'display:block;'); the following do not work: ...
63086 Asko Kauppi
akauppi70 Offline Send Email
Dec 9, 2009
12:46 pm
... Good point. I ended up having only one SVG per HTML page, so this is avoided. And input events anyways coming from the HTML side, not SVG. Like always,...
63087 Bryan Berry
bryanbryanb Offline Send Email
Dec 9, 2009
1:44 pm
I just figured it out, I can properly set the style this way: $(someSelector, capRoot)[0].style.display = "block"; That style is an object threw me for a loop....
63088 narendra sisodiya
skysoft_siso... Offline Send Email
Dec 9, 2009
7:07 pm
... Thanks for sharing info. what is "capRoot" here ?? is it svgns ??...
63089 Bryan Berry
bryanbryanb Offline Send Email
Dec 10, 2009
12:59 am
it is the root element for the svg document On Thu, Dec 10, 2009 at 12:52 AM, narendra sisodiya < ... [Non-text portions of this message have been removed]...
63090 tgoorden Offline Send Email Dec 10, 2009
1:16 am
I'm trying to animate a path (simulate a drawing pen) using scripting, but it seems that the canvas won't render until I've finished messing with the path. As...
63091 peterbyers1@...
peterbyers1... Offline Send Email
Dec 10, 2009
1:17 am
Hi The following SVG was written for, and works with Adobe SVG AddOn in Internet Explorer http://www.byershostingpeter.co.uk/demo/helpplease2.svg I have...
63092 longsonr Offline Send Email Dec 10, 2009
1:51 am
The Error Console tells you what's wrong :-) a:audio is an Adobe specific thing as xmlns:a="http://www.adobe.com/svg10-extensions" indicates and you can only...
Messages 63063 - 63092 of 65684   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