Re: [svg-developers] SVG Detect routine

2007-03-11 Thread Aaron Gray
version or type. That could be done as a separate function. Many thanks, Aaron - Original Message - From: ddailey To: svg-developers@yahoogroups.com Sent: Sunday, March 11, 2007 1:17 AM Subject: Re: [svg-developers] SVG Detect routine You'll need (maybe?) a Safari

[svg-developers] What version of Safari started supporting SVG ?

2007-03-11 Thread Aaron Gray
Hi, What version of Safari started supporting SVG ? Many thanks in advance, Aaron [Non-text portions of this message have been removed] Yahoo! Groups Sponsor ~-- Great things are happening at Yahoo! Groups. See the new email design. http

Re: [svg-developers] What version of Safari started supporting SVG ?

2007-03-11 Thread Aaron Gray
would be interested in the outcome as to try to find out which was the first version of Safari to do the download automatically. Aaron - Original Message - From: Mark To: svg-developers@yahoogroups.com Sent: Sunday, March 11, 2007 4:40 PM Subject: Re: [svg-developers

Re: [svg-developers] What version of Safari started supporting SVG ?

2007-03-11 Thread Aaron Gray
I have mod'ed it to give a link to the Adobe SVG download page if it is not automattically installed. - Original Message - From: Aaron Gray To: svg-developers@yahoogroups.com Sent: Sunday, March 11, 2007 4:57 PM Subject: Re: [svg-developers] What version of Safari started

[svg-developers] SVG Detect routine

2007-03-10 Thread Aaron Gray
Can you eyeball this and possibley test it and/or comment on it, please // // hasSVG.js - Detect SVG // function hasSVG() { var agent = navigator.userAgent; if (agent.indexOf(MSIE) != -1) { GenerateAdobeSVGCheck(); return isSVGControlInstalled(); } else if

[svg-developers] Re: Firefox problems

2007-01-29 Thread Aaron Gray
Whoopse forgot the example files :- http://www.aarongray.org/Examples/SVG/ScriptedCircle.html http://www.aarongray.org/Examples/SVG/ScriptedCircle.svg :) - Original Message - From: Aaron Gray To: svg-developers@yahoogroups.com Sent: Friday, January 26, 2007 7

Re: [svg-developers] Re: Firefox problems

2007-01-29 Thread Aaron Gray
Sorry that was an old delayed post. I have fixed the problems now. http://www.aarongray.org/Examples/SVG/ScriptedCircleNS.html http://www.aarongray.org/Examples/SVG/ScriptedCircleNS.svg Many thanks, Aaron - Original Message - From: steltenpower To: svg-developers

Re: [svg-developers] Re: Finding document root to add elements to.

2007-01-29 Thread Aaron Gray
'document.rootElement' thanks. The loading trick was because of slow loading SVGDocument was not availiable until loaded. Don't know if that is still necessary using 'document'. Aaron - Original Message - From: Andreas Neumann To: svg-developers@yahoogroups.com Sent

Re: [svg-developers] Re: Finding document root to add elements to.

2007-01-29 Thread Aaron Gray
Messages are getting stuck in the pipeline somehow, dissapearing for days ! So please ignore the last post. Aaron - Original Message - From: Aaron Gray To: svg-developers@yahoogroups.com Sent: Friday, January 26, 2007 4:17 PM Subject: Re: [svg-developers] Re: Finding

Re: [svg-developers] Re: Firefox problems

2007-01-27 Thread Aaron Gray
Ah, ECMAScript is the answer. Thank you all for taking me back to DOM 2. Time to recode :) Aaron - Original Message - From: ddailey To: svg-developers@yahoogroups.com Sent: Saturday, January 27, 2007 2:52 PM Subject: Re: [svg-developers] Re: Firefox problems Aaron: So

Re: [svg-developers] Re: Firefox problems

2007-01-27 Thread Aaron Gray
Ah, javascript again :) http://www.aarongray.org/Examples/SVG/ScriptedCircleNS.html http://www.aarongray.org/Examples/SVG/ScriptedCircleNS.svg Many thanks to all, Aaron - Original Message - From: Martin Honnen To: svg-developers@yahoogroups.com Sent

Re: [svg-developers] Re: Which tools to debug SVG/javascript?

2007-01-27 Thread Aaron Gray
, but the Web Designer is just a cut down version for mainly for students. On FireFox theres Firebug :- http://getfirebug.com/ https://addons.mozilla.org/firefox/1843/ Hope that helps, Aaron - Original Message - From: rui.ramalho To: svg-developers

Re: [svg-developers] Re: Which tools to debug SVG/javascript?

2007-01-27 Thread Aaron Gray
Sorry did not read the title properly. I think the FireBug may well work, but I am not too sure about MS VS Web Designer being able to debug using Adobe SVG. Aaron - Original Message - From: Aaron Gray To: svg-developers@yahoogroups.com Sent: Saturday, January 27, 2007 6:46

Re: [svg-developers] Finding document root to add elements to.

2007-01-26 Thread Aaron Gray
I did not explain that very well. What I want is to be able to access the svg DOM document root to be able to add DOM elements to that using javascript/ECMAScript, Rather than explicity creating a g element in SVG XML then adding child elements to that via DOM. Aaron - Original Message

Re: [svg-developers] Finding document root to add elements to.

2007-01-26 Thread Aaron Gray
I did not explain that very well. What I want is to be able to access the svg DOM document root to be able to add DOM elements to that using javascript/ECMAScript, Rather than explicity creating a g element in SVG XML then adding child elements to that via DOM. Aaron - Original Message

[svg-developers] Firefox problems

2007-01-26 Thread Aaron Gray
AddType image/svg+xml svgz But it does not work causing FF to display SVG source code. Secondly when envoked from a file the content does not display the circle. I am obvously doing some basic things wrong. Many thanks in advance, Aaron [Non-text portions of this message have been removed

Re: [svg-developers] Firefox problems

2007-01-26 Thread Aaron Gray
/ScriptedCircle.svg FF does not display a circle, IE7 and Opera do. It must be something pritty basic but I cannot see it :( Aaron - Original Message - From: ddailey To: svg-developers@yahoogroups.com Sent: Saturday, January 27, 2007 2:25 AM Subject: Re: [svg-developers

Re: [svg-developers] embed .v. object .v. frames .v. iframes -- [was SVG in XHTML file]

2007-01-25 Thread Aaron Gray
Okay, I have settled on embed. Thanks for the infomation. Aaron - Original Message - From: ddailey To: svg-developers@yahoogroups.com Sent: Thursday, January 25, 2007 1:05 AM Subject: Re: [svg-developers] embed .v. object .v. frames .v. iframes -- [was SVG in XHTML file

[svg-developers] Finding document root to add elements to.

2007-01-25 Thread Aaron Gray
, Aaron [Non-text portions of this message have been removed] - 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 visit your group on the web, go to: http

[svg-developers] SVG in XHTML file

2007-01-21 Thread Aaron Gray
Hi, Can SVG be included in a XHTML file without the need for object or embed ? If so how do I do this, could you point me to an example or provide a snippet of code ? Also can this be generated with DOM ? Many thanks in advance, Aaron [Non-text portions of this message have been removed

Re: [svg-developers] SVG in XHTML file

2007-01-21 Thread Aaron Gray
which viewer are you planning to support? Primarily Adobe, and FireFox, but I am also planning on checking out Corel. As many as possible really. hint: mixed namespaces Is this an issue, if so how much of aan issue ? Aaron On 21 Jan 2007, at 16:35, Aaron Gray wrote: Hi, Can SVG

Re: [svg-developers] Re: music and fonts and graphics

2004-12-11 Thread Aaron
HI again, On Fri, 2004-12-10 at 18:28, skatethere wrote: --- In [EMAIL PROTECTED], Aaron [EMAIL PROTECTED] wrote: altglyph?? What is altglyph? It is a method to refer to a glyph by id, rather than unicode. See the example I posted earlier. It's quite a bit more cumbersome than

Re: [svg-developers] Re: music and fonts and graphics

2004-12-09 Thread Aaron
lilypond(tex) process the music. A project goal is to produce output using xml tools, I gather the limiting factor here is a svg font with the proper unicode encodings. Can someone lay out in plain english what we need to do to acheive this? Thanks Aaron lilyxml Yahoo

Re: [svg-developers] Re: music and fonts and graphics

2004-12-08 Thread Aaron
if this is the way I am still stuck with the symbols that are not unique to music but not standard for regular fonts. Aaron Yahoo! Groups Sponsor ~-- Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar. Now with Pop-Up Blocker. Get it for free

Re: [svg-developers] Re: music and fonts and graphics

2004-12-08 Thread Aaron
the unicode encoding, it seems that in unicode I must combine glyphs to acheive many normal glyphs for music. this seems to add a lot of complication to the issue of displaying music. I am now most confused. Thanks Aaron Yahoo! Groups Sponsor ~-- Make

Re: [svg-developers] music and fonts and graphics

2004-12-06 Thread Aaron
of taking what I have and making a display and printed output from it. so I need a font with unicode that I can use and have xslt convert a2 to an a half note then somehow it needs to be placed properly on a treble staff. the staff will be a font? or a grapic in svg? Aaron

RE: [svg-developers] music and fonts and graphics

2004-12-06 Thread Aaron
level with it. Thanks Aaron [1] http://www.gnome.org/fonts/ Regards- Doug doug . schepers @ vectoreal.com www.vectoreal.com ...for scalable solutions. - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click

Re: [svg-developers] music and fonts and graphics

2004-12-06 Thread Aaron
is why I would consider the 'd' attribute approach (which would lead you to the XML entity approach). I think I would like to take the lilypond feta font which is known for its high quality and convert it to svg. Thanks Aaron - To unsubscribe send a message to: [EMAIL PROTECTED

Re: [svg-developers] music and fonts and graphics

2004-12-06 Thread Aaron
HI again work your use based solution is probably best. what does use based mean in this context? Thanks Aaaron Yahoo! Groups Sponsor ~-- $4.98 domain names from Yahoo!. Register anything. http://us.click.yahoo.com/Q7_YsB/neXJAA/yQLSAA/1U_rlB/TM

RE: [svg-developers] music and fonts and graphics

2004-12-06 Thread Aaron
? A font? what else? Thanks Aaron Sorry, didn't mean to confuse the matter. :) Regards- Doug Yahoo! Groups Sponsor ~-- $4.98 domain names from Yahoo!. Register anything. http://us.click.yahoo.com/Q7_YsB/neXJAA/yQLSAA/1U_rlB/TM

Re: [svg-developers] Re: music and fonts and graphics

2004-12-06 Thread Aaron
On Mon, 2004-12-06 at 20:55, Robin Berjon wrote: Aaron wrote: Well I thought to convert/code the feta font since it is one of the best music fonts out there. Is it a ttf font? no type1 aa If so you can use the ttf2svg tool that comes with Batik. See http://xml.apache.org/batik

Re: [svg-developers] Re: music and fonts and graphics

2004-12-06 Thread Aaron
On Mon, 2004-12-06 at 20:53, [EMAIL PROTECTED] wrote: You mean the mailing list? yes the mailing list and if you can do more cvs access. Aaron Sure, but I must warn you I'm going to be busy in the next month or two (as I've been thos last 3 or 4 months working on this). I'd be happy

Re: [svg-developers] Re: music and fonts and graphics

2004-12-06 Thread Aaron
Great I already have fontforge installed and did a converison although I didn't know how to add the unicode stuff or whether to start from a type1 or first convert to ttf. Thanks this is starting to get interesting. Aaron On Mon, 2004-12-06 at 23:54, skatethere wrote: --- In [EMAIL PROTECTED