RE: [svg-developers] GoSVG.NET (Renesis SVG Viewer) has gone online!

2005-05-04 Thread Peter Schonefeld
GoSVG.NET (www.gosvg.net) just went online. Have a look on it and leave all your comments there. Hey Alex! Great work!!! I very much look forward to learning more at SVG Open. Pete - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit

[svg-developers] Frameset reference HELP!

2005-05-04 Thread Edgar Valarezo
Hi everybody I have a frameset with a svg document reference like this: html head titleMy Map/title script language=”javascript” function access(id){ var svgdoc = frames.mapFrame.document.getSVGDocument(); //error var svgdoc = frames.mapFrame.getSVGDocument(); //error var

[svg-developers] Creating User defined DOCTYPE by xslt

2005-05-04 Thread rwkemper
Hallo Experts, I'm creating my svg by xslt. Everthing works fine so-far, but now I want to declare a doctype specifying additional attributes for the svg tags and later on specify additional elements at all. My problem is to create teh follwing text in the output svg : !DOCTYPE svg PUBLIC

Re: [svg-developers] GoSVG.NET (Renesis SVG Viewer) has gone online!

2005-05-04 Thread Antoine Quint
On 4 mai 2005, at 13:24, Alexander Adam wrote: GoSVG.NET (www.gosvg.net) just went online. Have a look on it and leave all your comments there. Looks promising. Any hope to see a public beta at some point prior to the actual release? I'm most interested in a Mac version by the way. Antoine

[svg-developers] Re: Creating User defined DOCTYPE by xslt

2005-05-04 Thread Jim Ley
rwkemper [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I'm creating my svg by xslt. Everthing works fine so-far, but now I want to declare a doctype specifying additional attributes for the svg tags and later on specify additional elements at all. No idea about the XSLT issue,

[svg-developers] Re: getURL() problem

2005-05-04 Thread derguteonkeldod
Maybe there is a parsing error. I don't get any information out of the 'xmldoc'. Here is my servlet XML: out.println(Data); out.print(status); out.print(u); out.print(/status); out.print(deck); out.print(h); out.print(/deck); out.println(/Data); And that's the javascript

[svg-developers] Re: GoSVG.NET (Renesis SVG Viewer) has gone online!

2005-05-04 Thread Alexander Adam
hi, Looks promising. Any hope to see a public beta at some point prior to the actual release? I'm most interested in a Mac version by the way. Yes, the version shown at the SVGOpen2005 will be a beta which should go public around 2-3 weeks after that. And there'll be beta versions for all

[svg-developers] Re: GoSVG.NET (Renesis SVG Viewer) has gone online!

2005-05-04 Thread Alastair
Hi Alexander, I would be most interested to see the SVG source you used for that demo. Great job by the way. I can hardly wait! Cheers, Alastair http://spark.sourceforge.net Date: Wed, 04 May 2005 04:24:53 - From: Alexander Adam [EMAIL PROTECTED] Subject: GoSVG.NET (Renesis SVG

Re: [svg-developers] Re: getURL() problem

2005-05-04 Thread Peter Thompson
There are no attributes in that XML document. The following fragment returns the letter 'u' from the XML document: x=xmldoc.childNodes.item(0).childNodes.item(0).firstChild.nodeValue; __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best

Re: [svg-developers] Re: Creating User defined DOCTYPE by xslt

2005-05-04 Thread Peter Thompson
Jim, I understand about the DTD not being useful to the renderer, but what other ways are there to validate SVG besides validating with an XML parser using the DTD? Peter __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam

[svg-developers] setAttribute(display,block) doesn't work in javascript function

2005-05-04 Thread tamsvg
Hi! I try to make an object like a circle or something else visible with a javascript method by prssing a key. I want to set the display property of the circle from 'none' to 'block'. But no circle appears. I put an alert in my function to see if the programm jumps in this function and it does.

Re: [svg-developers] circles are blue but circle.getAttribute(fill) returns red

2005-05-04 Thread Holger Will
tamsvg wrote: Hi! I want to count all the circles that are blue when pressing the enter key. They become blue when I click on them (before this they were red). But when I jump to my function and write out the colours its red not blue. And so the count is 0. Why? This is the code: ?xml

Re: [svg-developers] setAttribute(display,block) doesn't work in javascript function

2005-05-04 Thread Peter Thompson
I looked at this the first time that you posted it. I think that there is some interaction between the declarative set attribute and the Javascript set attribute, but I don't know for sure and can't explain it (maybe someone who really understands this will comment). If it were me, I'd remove

Re: [svg-developers] setAttribute(display,block) doesn't work in javascript function

2005-05-04 Thread Cameron McCormack
Hi Peter. Peter Thompson: I looked at this the first time that you posted it. I think that there is some interaction between the declarative set attribute and the Javascript set attribute, but I don't know for sure and can't explain it (maybe someone who really understands this will comment).

[svg-developers] Problems getting JavaScirpt working

2005-05-04 Thread bacchus119
Hey there, I've been building web sites for going on 6 years now and just recently discovered SVG graphics. So, I decided to learn them to see what they really can do. I need some basic help, and I figured that this was a good place to go. I'm going through the book SVG Programming-The

[svg-developers] spending too much per month?

2005-05-04 Thread kxvjidkgoks
Hey guys, figured I'd post here, I used http://www.allapproveloans.com to refinance and it cut my bills down alot! - 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

Re: [svg-developers] setAttribute(display,block) doesn't work in javascript function

2005-05-04 Thread Peter Thompson
Thanks. That is exactly what I didn't know. __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com [Non-text portions of this message have been removed] - To unsubscribe send a message

[svg-developers] Re: firefox problem

2005-05-04 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Richard D. Spencer [EMAIL PROTECTED] wrote: 2. various declared svg files are loaded. Here is the first: svg id=universalContainer svg id=widgetsContainer pointer-events=visible transform=matrix(1,0,0,1,0,0) fill-opacity=0.4 rect id=backdrop

[svg-developers] Re: Problems getting JavaScirpt working

2005-05-04 Thread Richard D. Spencer
Is this the problem? http://www.mozilla.org/projects/svg/faq.html#source Dave --- In svg-developers@yahoogroups.com, bacchus119 [EMAIL PROTECTED] wrote: Hey there, I've been building web sites for going on 6 years now and just recently discovered SVG graphics. So, I decided to learn

[svg-developers] Re: firefox problem

2005-05-04 Thread Richard D. Spencer
That works! I thought that including the namespace in the root svg was enough: I was wrong. Thanks, Dave --- In svg-developers@yahoogroups.com, Martin Honnen [EMAIL PROTECTED] wrote: --- In svg-developers@yahoogroups.com, Richard D. Spencer [EMAIL PROTECTED] wrote: 2. various

[svg-developers] Re: getURL() problem

2005-05-04 Thread derguteonkeldod
Hello, maybe I have a parsing error. I don't get any information out of the 'xmldoc'. Here is my servlet XML: out.println(Data); out.print(status); out.print(u); out.print(/status); out.print(deck); out.print(h); out.print(/deck); out.println(/Data); And that's the javascript

[svg-developers] Dynamic SVG Example in Firefox and ASV

2005-05-04 Thread Nick, Jay
I spent some time with the Firefox nightly build with SVG included (on windows 2000 and XP). It is available here: http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-trunk/ I just used the zip file and extracted it to a separate location so I didn't have to reinstall each time. After

RE: [svg-developers] Re: getURL() problem

2005-05-04 Thread Rick Bullotta
Try something like: x = xmldoc.childNodes.item(0).childNodes.item(0).firstChild.nodeValue; -Original Message- From: svg-developers@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of derguteonkeldod Sent: Wednesday, May 04, 2005 12:59 PM To: svg-developers@yahoogroups.com Subject:

[svg-developers] Open Clip Art Library Release 0.13 Announcement

2005-05-04 Thread Holger Will
Hi All Jon Phillips just anounced a new release of the Open Clip Art Library. here is the original mail: May 4, 2005 UTC - Release 0.13 of the Open Clip Art Library (www.openclipart.org) is now available for download on-line as an individual package consisting of 3459 images submitted by over

Re: [svg-developers] Re: GoSVG.NET (Renesis SVG Viewer) has gone online!

2005-05-04 Thread Sean
Will this replace the Adobe plugin? Alexander Adam wrote: hi, Looks promising. Any hope to see a public beta at some point prior to the actual release? I'm most interested in a Mac version by the way. Yes, the version shown at the SVGOpen2005 will be a beta which should go public

[svg-developers] Re: Re: Creating User defined DOCTYPE by xslt

2005-05-04 Thread Jim Ley
Peter Thompson [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I understand about the DTD not being useful to the renderer, but what other ways are there to validate SVG besides validating with an XML parser using the DTD? Well, you can use a validating script that adds on the DTD

[svg-developers] Re: GoSVG.NET (Renesis SVG Viewer) has gone online!

2005-05-04 Thread Alexander Adam
--- In svg-developers@yahoogroups.com, Sean [EMAIL PROTECTED] wrote: Will this replace the Adobe plugin? Yes. We are looking in all possibilities to have the viewer wide-spread on its release, maybe delivering it with Mozilla or other applications. It will also replace many mobile viewers.

[svg-developers] More technical details about Renesis

2005-05-04 Thread Alexander Adam
Dear Folks, There's a new technical blog entry available at www.gosvg.net which is titled sXBL, Script Languages and more and explains more details about Renesis. I'd appreciate if you'd leave your comments there. thanks! Alexander Adam EvolGrafiX - http://www.evolgrafix.com GoSVG.NET! -

[svg-developers] Gzipped Javascript files

2005-05-04 Thread dyfcribyn
Hi, I have a html webpage with SVG elements embedded in it, with javascript files referenced in the html. One javascript file is around 400kb in size as some data is hard coded into it. My question is, can you reference gzipped javascript files in the html doc, like you can with just SVG

[svg-developers] Transparency problem in FOP

2005-05-04 Thread chun79
Hi there, In putting the SVG into a PDF using FOP, all transparency/opacity gone, any work around for this problem? Can any other software do this for me? Many Thanks - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click