Re : [svg-developers] onmousedown() and onclick() at the same time

2008-12-04 Thread julie gautier
Ok, I get it. Thanks for you response. De : ddailey [EMAIL PROTECTED] À : svg-developers@yahoogroups.com Envoyé le : Mercredi, 3 Décembre 2008, 22h37mn 31s Objet : Re: [svg-developers] onmousedown() and onclick() at the same time Hi Julie, I think what is

Re: [svg-developers] Re: Report on SVG Viewer Performance

2008-12-04 Thread G. Wade Johnson
On Thu, 04 Dec 2008 06:12:30 - Frank Bruder [EMAIL PROTECTED] wrote: Great work so far. Just three comments: - You identify your platform and the user agents you've tested, but since Batik is a Java application it would make sense to also state which JVM version was used. (Smack head

[svg-developers] Re: onmousedown() and onclick() at the same time

2008-12-04 Thread jgfa92004
Hi again, I still have troubles getting things work... Here is my entire code, if you could help. This is a circle in a 'zone' where it's possible to zoom by drawing a selection rectangle. I desesperatly try to make the 'click' event fired to launch another action (here : change the color of

Re: [svg-developers] Re: Report on SVG Viewer Performance

2008-12-04 Thread Erik Dahlström
On Thu, 04 Dec 2008 07:12:30 +0100, Frank Bruder [EMAIL PROTECTED] wrote: Great work so far. Just three comments: ... - Your testing method does not necessarily measure a relevant benchmark. A scripting engine which queues events in such a way that interval and timeout events always are

[svg-developers] Re: Report on SVG Viewer Performance

2008-12-04 Thread Helder Magalhães
if you're not going to see the frames anyway, why should valuable CPU time be wasted rendering them? The question is how sensitive is the human perception. Of course the screen refresh rate should take precedence but monitors (specially LCD, as CRT were already doing it for a while) are getting

Re: [svg-developers] Re: Report on SVG Viewer Performance

2008-12-04 Thread G. Wade Johnson
On Thu, 04 Dec 2008 15:28:40 +0100 Erik Dahlström [EMAIL PROTECTED] wrote: On Thu, 04 Dec 2008 07:12:30 +0100, Frank Bruder [EMAIL PROTECTED] wrote: Great work so far. Just three comments: ... - Your testing method does not necessarily measure a relevant benchmark. A scripting engine

[svg-developers] Re: onmousedown() and onclick() at the same time

2008-12-04 Thread Ken Stacey
Hi Julie, In your mousedown code you initialize the position and size of the 'zone' rectangle and place it under the mouse. When the mouseup comes along, zone is the target and the circle never gets a click event. In the 'zone' rect, put pointer-events=none rect fill=none stroke-width=10

Re : [svg-developers] Re: onmousedown() and onclick() at the same time

2008-12-04 Thread julie gautier
Thanks a lot ! De : Ken Stacey [EMAIL PROTECTED] À : svg-developers@yahoogroups.com Envoyé le : Vendredi, 5 Décembre 2008, 5h34mn 03s Objet : [svg-developers] Re: onmousedown() and onclick() at the same time Hi Julie, In your mousedown code you initialize