[svg-developers] Trouble with side by side text objects

2006-09-13 Thread richard_smith_ons
I have a problem with texts. Using the Adobe Viewer the SVG below displays the "click here" link neatly in front of the preceding text regardless of the size of the browser window. However using Firefox 1.5.0.6 or Opera 9.0.1 the gap between the two texts varies (can overlap) according to the s

[svg-developers] Re: Trouble with side by side text objects

2006-09-14 Thread richard_smith_ons
r using text-anchor="end" on the first piece of text... > > --- In svg-developers@yahoogroups.com, Erik Dahlström wrote: > > > > On Wed, 13 Sep 2006 14:41:24 +0200, richard_smith_ons > > wrote: > > > > > I have a problem with texts. Using t

[svg-developers] Re: Trouble with side by side text objects

2006-09-14 Thread richard_smith_ons
ng text-anchor = 'end' on text1 and text-anchor = 'start' on text2 to lock them together. It works with Opera but Firefox still displays the two texts at varying distances apart (including overlapping) depending on the size of the screen. Richard --- In svg-developers@

[svg-developers] Re: SVG retrieving value

2006-09-29 Thread richard_smith_ons
document.getElementById("sometext").firstChild.data should do the biz. Richard --- In svg-developers@yahoogroups.com, "gnylarichard" <[EMAIL PROTECTED]> wrote: > > I can get attribute values from the following, but how do i get the > value of the text Richard? > > font-family="Arial" font-s

[svg-developers] EventListener problem with mapApp from Carto.net

2006-09-29 Thread richard_smith_ons
Running under IE6 / ASV 3.0.3 I sometimes get the error "object doesn't support this property or method line 69 column 2". The line is in MapApp.js and is document.documentElement.addEventListener ("SVGScroll",this,false); The problem started occuring when I upgraded the code from 0.99 to 1.1.

[svg-developers] Re: EventListener problem with mapApp from Carto.net

2006-09-29 Thread richard_smith_ons
;init" which is run by the SVG's onload event. My guess is that due to IE's timing oddities it was firing "too soon" ? Richard --- In svg-developers@yahoogroups.com, "richard_smith_ons" <[EMAIL PROTECTED]> wrote: > > Running under IE6 / ASV 3.0.3

[svg-developers] Re: pb with asynchronous xmlHttpRequest

2006-10-30 Thread richard_smith_ons
I don't know if it's possible to do a "real" progress bar like in Flash. Below is my code for a "fake" one. In Mozilla it does squares every second or so (no relation to actual progress). Due to timing quirks, this does not work properly in IE, but with ASV we have animateColor available so it

[svg-developers] Another FF2 text-anchor bug

2006-11-17 Thread richard_smith_ons
I have some code to display a numeric value obtained from the server as right-justified. It works as nature intended on Firefox 1.5 and ASV3 but FF2 left-justifies it. D'oh! in XSL: in Javascript after value obtained: svgdoc.getElementById("compValue").firstChild.data = vdata; Has this been

[svg-developers] Re: Another FF2 text-anchor bug

2006-11-17 Thread richard_smith_ons
help. There is > no workaround as far as i know, which leaves us currently unable to > consider FF2 a usable browser. Hopefully they will find the bug and > release 2.01 before too many copies of FF2 get out into the wild. > > Guy > > On 17/11/2006, at 10:02 PM, richar

[svg-developers] Firefox: Mouseover slowed by point symbols

2007-01-16 Thread richard_smith_ons
The URL below will create an SVG thematic map of local authorities in the South East region of England. http://www.neighbourhood.statistics.gov.uk/dissemination/LeadTableView. do? a=7&b=276980&c=PO15+5RR&d=13&e=15&g=450803&i=1001x1003x1004&o=190&m=0&e nc=1&dsFamilyId=47 Click on "map this data"

[svg-developers] Re: Firefox: Mouseover slowed by point symbols

2007-01-16 Thread richard_smith_ons
9cJ2v4ALvy- nTnVuEse8bgmm87VVPAbnIQ4UrCYcV90TLolzfV1Z0f1mvLOx0rtXL3BCt917f7AOEvG7 oLkv6*kqHiBDrfm1RnOxdF8OzfarFApBfaLMjNUQ2mrsY0Yoen4YeLWWDHx6xZ3WY7lkc ZdVPkJ-yIJ-6f-ln8BqU3PxqQKAAA%3D Richard --- In svg-developers@yahoogroups.com, "brucerindahl" <[EMAIL PROTECTED]> wrote: > > --- In svg-developers@yahoogroups.com, "richard

[svg-developers] Re: Firefox: Mouseover slowed by point symbols

2007-01-17 Thread richard_smith_ons
L PROTECTED]> wrote: > > --- In svg-developers@yahoogroups.com, "richard_smith_ons" > wrote: > > > > Thanks Bruce, > > > > Does this massive URL work in Firefox 3? It should bypass > > the "Browserhawk" sniffer... > > > > > It l

[svg-developers] Problems with Safari 3.0.3 Beta (Windows)

2007-09-12 Thread richard_smith_ons
I'm hoping to make our Neighbourhood Statistics dynamic thematic map (example here http://tinyurl.com/2cgws4 ) work with Safari. Currently only IE/ASV and Firefox are supported. Safari is next then Opera. The map renders successfully (which is a good start) but the interactive content doesn't w

[svg-developers] Re: Problems with Safari 3.0.3 Beta (Windows)

2007-09-20 Thread richard_smith_ons
ground map (which doens't show) or doing a metadata popup. The mouseovers still don't fire and the page still relaods every time you do something (making it unusable). Could it be something to with the event handler in mapApp? Richard --- In svg-developers@yahoogroups.com, "

[svg-developers] Re: Problems with Safari 3.0.3 Beta (Windows)

2007-09-21 Thread richard_smith_ons
I have now found out why the page keeps restarting. It's the dummy tags - D'oh! Including an tag with a dummy href as below means that the mouse pointer behaves in the normal hyperlink way (in both ASV and FF), otherwise it serves no purpose. Trouble is Safari interprets it as a request to r

[svg-developers] Re: Problems with Safari 3.0.3 Beta (Windows)

2007-09-27 Thread richard_smith_ons
this week (will try again on Monday) Richard --- In svg-developers@yahoogroups.com, "Tim Rowley" <[EMAIL PROTECTED]> wrote: > > On 9/21/07, richard_smith_ons <[EMAIL PROTECTED]> wrote: > > I have now found out why the page keeps restarting. It's the d

[svg-developers] USE elements in Safari - problems with events

2007-10-01 Thread richard_smith_ons
http://bugs.webkit.org/show_bug.cgi?id=14167 Due to the above I get "evt.target.getAttributeNS not an object" when trying to process the events on a USE element (Safari 3.0.3 for Windows). The conclusion seems to be it's not a bug (!) Is there a recommended workaround? Thanks Richard ---

[svg-developers] Re: USE elements in Safari - problems with events

2007-10-01 Thread richard_smith_ons
Thanks Erik. - 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://groups.yahoo.com/group/svg-developers/ <*> Your email

[svg-developers] Image tag with Safari 3

2007-10-25 Thread richard_smith_ons
I'm getting closer to getting all my stuff to work on Safari (Windows version 3.0.3), but my background raster maps do not display. The simple example below results in a blank page. http://www.w3.org/2000/svg"; xmlns:xlink="http://www.w3.org/1999/xlink"; preserveAspectRatio="xMidYMid meet" z

[svg-developers] Re: Image tag with Safari 3

2007-10-26 Thread richard_smith_ons
gt; seems maybe it's an orphaned negative. > but this wasn't specific to Safari... > > regards > > Jonathan Chetwynd > Accessibility Consultant on Media Literacy and the Internet > > > > On 25 Oct 2007, at 09:27, richard_smith_ons wrote: > > > ht

[svg-developers] Re: Image tag with Safari 3

2007-10-26 Thread richard_smith_ons
P.S. I have now got round the problem by moving my background images outside the viewboxed area, and adding some extra code to size and position them :-) Richard --- In svg-developers@yahoogroups.com, "richard_smith_ons" <[EMAIL PROTECTED]> wrote: > > Thanks Jonatha