... Yeah, I recall John Resig recently blogging about Web browser timing [1]. Although IE is pointed as the one suffering more from timing issues, and the...
On Tue, 02 Dec 2008 10:10:40 -0000 ... At the moment, I'm running pure Linux, so IE is not a testable option. I probably need to get a VM up to test IE. ... I...
Hi all, Does anybody know how to allow a text tag to allow french acsents, i.e <text id="fg8H0" x="124.4" y="396.0" style="font-family:Arial; font-size:12.1;...
Hi, I have the following svg code : <g onmousedown="down(evt);" onmouseup="up(evt);"> <circle onclick="alert('circle1')" fill="black" r="5" cx="5" cy="5"/> ...
... Probably more modifications are required: for example, ASV and Renesis don't accept a method as setInterval/setTimeout argument - a string must be used...
I now know that this can be achieved as follows; <!-- English messages --> <text class="info" lang="en">Variable declared twice</text> <!-- French messages -->...
... This is not directly related to SVG but to XML in general. Usually, you only need to specify the encoding in the XML preamble (first line which should be...
... I suspect (no deep testing/analysis, sorry!) you are calling "stopPropagation" within the "down" method. If you are, then the behavior is expected - the...
On Wed, 03 Dec 2008 12:04:06 -0000 ... I vaguely remember that from back in the old days. Thanks for reminding me. ... I believe this is the reason for the...
Hi, There's something I really don't understant, if somebody could help me : in the javascript code David sent, if I add an alert in the 'all' function : if...
Hi Julie, I think what is happening when you put an alert in the middle of it all is this: first the onmousedown is received, evt.type is then "mousedown" next...
ddailey
ddailey@...
Dec 3, 2008 9:41 pm
61553
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...
On Thu, 04 Dec 2008 06:12:30 -0000 ... (Smack head on table) You're right, I should have thought of that. I'll add it. ... I'm not sure I understand your issue...
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...
... I would agree that doing DOM modifications and checking how long it took before it could do the next update/modification isn't necessarily very accurate....
... 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...
On Thu, 04 Dec 2008 15:28:40 +0100 ... We would hope that we could get updates faster than the rendering. But if you don't then it is a result I would like to...
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...
On Thu, 04 Dec 2008 18:38:22 +0100, Helder Magalhães <helder.magalhaes@...> wrote: ... Yeah, that article is an interesting read. Anyhow, should you...
... Great, this sounds really useful. :-) I'm still getting acquainted with this new Opera release: didn't have the time to digg deep but only to have a quick...
... You can create PDF files of SVG from Safari?? Please, tell me the trick. I just get a blank page except for the page headers, the same as when I do Print...
http://www.tgdaily.com/content/view/40472/140/ excerpts from the article: "Opera 10 alpha unveiled: Fully web compliant, 30% faster" "Also new: Opacity...
ddailey
ddailey@...
Dec 8, 2008 9:47 pm
61566
W3C's announcement: http://www.w3.org/2008/12/smil3-pressrelease.html Press coverage: Wall Street Journal: ...
ddailey
ddailey@...
Dec 8, 2008 10:14 pm
61567
... What I mean is this: Consider the following code. setInterval(doSomething, 20); setTimeout(somethingElse, 1000); Nominally doSomething() would be expected...