[svg-developers] Re: Creating SVG elements using Javascript in MSIE + ASV

2006-04-17 Thread Kam-Hung Soh
Hi Martin, Your tip works! Now my document will work for Firefox, Opera and MSIE + ASV. Thanks! -- Kam-Hung Soh http://kamhungsoh.blogspot.com - It Mostly Works http://members.optusnet.com.au/khsoh - Software That Mostly Works --- In svg-developers@yahoogroups.com, Martin Honnen [EMAIL

Re: [svg-developers] Re: Simulate Ctrl Alt Key Press to Zoom and Pan

2006-04-17 Thread Richard Gnyla
Anil A simplified script is available at http://www.eventex.co.uk/compatible/index.aspx It works in IE + ASV and Firefox 1.5 The javascript is in the .aspx source of the page - the svg source just has an ID of the svg and then ID's for the different polygons. Richard Anil Kumar Vemu

[svg-developers] Conway's Game of Life

2006-04-17 Thread Kam-Hung Soh
Between driving 2 * 650 km, amusing the kids and visiting my in-laws over the Easter break, I managed to put together an SVG version of John Conway's Game of Life: http://members.optusnet.com.au/khsoh/0009.xhtml The interesting bits are: * Using SVG lines to create a raster by twiddling the

Re: [svg-developers] Re: Simulate Ctrl Alt Key Press to Zoom and Pan

2006-04-17 Thread Anil Kumar Vemu
Hi Richard, Thankyou very much for immediate support. The example displayed is excellent with Animated Zoom and Pan - it was part of my dream solution - you made it simple. Thankyou very much But I was looking for a solution like, if I click on Zoom In button, the cursor would

[svg-developers] Re: An SVG Tutorial

2006-04-17 Thread Jeff Schiller
--- In svg-developers@yahoogroups.com, [EMAIL PROTECTED] wrote: Has anyone compiled a how-to for making your SVG app work in Opera? Mine works in FF and ASV, but I only get a fragment of it displayed in opera, and without any error messages it's kinda hard to know what opera doesn't like

Re: [svg-developers] Re: An SVG Tutorial

2006-04-17 Thread David Dailey
At 08:28 PM 4/16/2006, Guy wrote: Has anyone compiled a how-to for making your SVG app work in Opera? Mine works in FF and ASV, but I only get a fragment of it displayed in opera, and without any error messages it's kinda hard to know what opera doesn't like about it... The only troubles I've

Re: [svg-developers] Re: An SVG Tutorial

2006-04-17 Thread Phi Tran
I Use Opera 8.54 then. Tools-Delete private data .. -- Advanced (select delete catch) ... Then restart the browser. (It work for me). Phi On 4/17/06, David Dailey [EMAIL PROTECTED] wrote: At 08:28 PM 4/16/2006, Guy wrote: Has anyone compiled a how-to for making your SVG app work in Opera?

[svg-developers] Re: An SVG Tutorial

2006-04-17 Thread Jeff Schiller
--- In svg-developers@yahoogroups.com, David Dailey [EMAIL PROTECTED] wrote: http://www.schillmania.com/content/entries/2006/04/more-rounded-corners/how does one purge the cache in Opera, by the way? Tools Preferences Advanced History Empty Now With Firefox, I think you can force a

Re: [svg-developers] Conway's Game of Life

2006-04-17 Thread Darryl Watson
Interesting application! I get about 7 frames per second on my AMD-64 3200 CPU, with about 40 objects instantiated. Kam-Hung Soh wrote: Between driving 2 * 650 km, amusing the kids and visiting my in-laws over the Easter break, I managed to put together an SVG version of John Conway's Game of

Re: [svg-developers] Re: An SVG Tutorial

2006-04-17 Thread Richard Gnyla
Ive almost given up on Opera until the Final release to see if worth trying to sort out, theres no hanging or mathematical text and until Opera does this then I wont bother as our app depends on text being displayed properly in this manner. Also I am having problem with accessing SVG ID

[svg-developers] Re: An SVG Tutorial

2006-04-17 Thread Martin Honnen
--- In svg-developers@yahoogroups.com, Richard Gnyla [EMAIL PROTECTED] wrote: Also I am having problem with accessing SVG ID elements, some work in Opera and some dont and I dont understand why. Does that mean that document.getElementById('someId') fails to find an element in an SVG

[svg-developers] Re: An SVG Tutorial

2006-04-17 Thread Francis Hemsher
Hi Richard and/or Alex I looked at your app. It's the typical initial effort to address SVG in the unrealistic environment of cross-browser creations. If you want to continue in this direction, you will find you are expending 90% of your time in the frustrations of browser anomalies, rather

RE: [svg-developers] Re: An SVG Tutorial

2006-04-17 Thread Doug Schepers
Hi- For those of you who have not yet tried to make cross-browser applications (or even simple SVGs), I encourage you to try it for yourself rather than rely on Francis' opinion. There are a few gotchas (most of which have workarounds) and some fetures that ASV supports that the others don't, but

RE: [svg-developers] reporting bugs Re: An SVG Tutorial

2006-04-17 Thread David Dailey
At 11:08 AM 4/17/2006, Doug wrote (concerning opera): ... give them feedback! Let them know what features are broken or unimplemented, and more importantly, which of these are really important to you; they have to prioritize, and if you tell them what you need, they can put that higher on the

[svg-developers] Street maps in SVG format...

2006-04-17 Thread peterkalev2002
Hi all, If I need a street map of few city blocks, where can I find it in SVG format for commercial use. I have been tracing them so far in Illustrator, but it is very time consuming... :( Thank you in advance! Peter - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit

Re: [svg-developers] object vs embed Re: An SVG Tutorial

2006-04-17 Thread David Dailey
At 09:47 AM 4/17/2006, Jeff Schiller wrote: Also, shouldn't you be using object in Firefox and Opera? I don't know. I was wondering this very question yesterday and did some simple experiments seeing if I could script across HTML to SVG using objects or for that matter iframe's instead of

Re: [svg-developers] object vs embed Re: An SVG Tutorial

2006-04-17 Thread Jonathan Watt
Hi David, On 4/17/06, David Dailey [EMAIL PROTECTED] wrote: At 09:47 AM 4/17/2006, Jeff Schiller wrote: Also, shouldn't you be using object in Firefox and Opera? I don't know. I was wondering this very question yesterday and did some simple experiments seeing if I could script across HTML

Re: [svg-developers] Re: An SVG Tutorial

2006-04-17 Thread Richard Gnyla
Martin Hi, I think I have already posted this problem but not sure whether its me or Opera but in the debug of Opera it did say something like that the value was Null? http://www.eventex.co.uk/compatible/index.aspx The top functions work for zoom plus/ minus pan and extents so it is finding

[svg-developers] new xbl-developers list (XBL = XML Binding Language(s))

2006-04-17 Thread steltenpower
the description on http://groups.yahoo.com/group/xbl-developers/ reads: XBL, or XML Binding Language(s). An XML language for coding-shortcuts to more Model-View-Controller separation in building visualisations in for example XHTML or SVG. This is a mailing list and web forum for anyone who is

Re: [svg-developers] Re: An SVG Tutorial

2006-04-17 Thread Richard Gnyla
Hi Francis I agree with what your saying but I do have a problem and my fellow developers / designers will agree. I may need to see a doctor about this but my problem is that I am mainly a designer and ideas man (my previous job was to come up with innovative ideas before setting up my own

Re: [svg-developers] object vs embed Re: An SVG Tutorial

2006-04-17 Thread Richard Gnyla
Yep you cannot script with the object tag so best use the embed tag for that - its pants I know but have no choice Has anybody noticed with the recent IE update that you have to 'click to interact with this plugin' with Flash and SVG now. Its very annoying on some sites. Richard David Dailey

Re: [svg-developers] reporting bugs Re: An SVG Tutorial

2006-04-17 Thread Jonathan Watt
Hi guys, On 4/17/06, Jeff Schiller [EMAIL PROTECTED] wrote: --- In svg-developers@yahoogroups.com, David Dailey [EMAIL PROTECTED] wrote: 2. I usually figure if something doesn't work, someone is usually aware of it -- for example at

[svg-developers] Re: Street maps in SVG format...

2006-04-17 Thread Andreas Neumann
Hi, you'd probably get the data in GIS format, which can be converted to SVG format. A typical exchange format for GIS is ESRI shapefile or GML. These two are relatively easy to convert to SVG. Commercial geodata provider for road data are the two big guys Teleatlas and Navteq. You may also

Re: [svg-developers] object vs embed Re: An SVG Tutorial

2006-04-17 Thread DL
On 17 Apr 2006 at 19:55, Richard Gnyla wrote: Has anybody noticed with the recent IE update that you have to 'click to interact with this plugin' with Flash and SVG now. Its very annoying on some sites. Arising from the EOLAS patent dispute ..

Re: [svg-developers] object vs embed Re: An SVG Tutorial

2006-04-17 Thread Richard Gnyla
Does EOLA have something against M$ but not Mozilla? Or will Mozilla Firefox also have to be put in line over this Richard DL wrote: On 17 Apr 2006 at 19:55, Richard Gnyla wrote: Has anybody noticed with the recent IE update that you have to 'click to interact with this plugin' with

[svg-developers] reporting bugs Re: An SVG Tutorial

2006-04-17 Thread chaals
On 4/17/06, Jeff Schiller [EMAIL PROTECTED] wrote: --- In svg-developers@yahoogroups.com, David Dailey david.dailey @ wrote: 2. I usually figure if something doesn't work, someone is usually aware of it -- for example at

[svg-developers] Fwd: Re: Street maps in SVG format...

2006-04-17 Thread Ronan Oger
-- Forwarded Message -- Subject: Re: Street maps in SVG format... Date: Monday 17 April 2006 23:51 From: b22gate [EMAIL PROTECTED] To: [EMAIL PROTECTED] Depending on where you are you might find that openstreetmap.org has some mapping data for where you live. There is an SVG

[svg-developers] Re: Conway's Game of Life

2006-04-17 Thread Kam-Hung Soh
Hi, Glad you had a go! The program's speed depends on the size of the board, not the number of objects, because it to calculate whether a live cell dies or a dead cell comes to life. Regards, -- Kam-Hung Soh http://kamhungsoh.blogspot.com - It Mostly Works http://members.optusnet.com.au/khsoh

[svg-developers] SVG Open Archives

2006-04-17 Thread Heiko Niemann
Hi, does anybody know where the archives of SVG Open 2002-2005 have gone? All links http://www.svgopen.org/200x/... seem to be redirected to the homepage of the conference this summer. Regards, Heiko - To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit