... 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...
61539
Helder Magalhães
heldermagalhaes
Dec 2, 2008 10:28 am
... Well, although Apache XML graphics was already partially referred [1] (through Apache FOP [2]), I'd like to leave a more direct link to the SVG...
61540
G. Wade Johnson
gwadej
Dec 2, 2008 1:14 pm
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...
61541
markelliott2000
Dec 3, 2008 10:55 am
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;...
61542
jgfa92004
Dec 3, 2008 11:07 am
Hi, I have the following svg code : <g onmousedown="down(evt);" onmouseup="up(evt);"> <circle onclick="alert('circle139;)" fill="black" r="5" cx="5" cy="5"/> ...
61543
Helder Magalhães
heldermagalhaes
Dec 3, 2008 12:04 pm
... Probably more modifications are required: for example, ASV and Renesis don't accept a method as setInterval/setTimeout argument - a string must be used...
61544
markelliott2000
Dec 3, 2008 12:14 pm
I now know that this can be achieved as follows; <!-- English messages --> <text class="info" lang="en">Variable declared twice</text> <!-- French messages -->...
61545
Helder Magalhães
heldermagalhaes
Dec 3, 2008 12:16 pm
... 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...
61546
Helder Magalhães
heldermagalhaes
Dec 3, 2008 12:26 pm
... I suspect (no deep testing/analysis, sorry!) you are calling "stopPropagation" within the "down" method. If you are, then the behavior is expected - the...
61547
jgfa92004
Dec 3, 2008 1:08 pm
Hi, Thanks for the answer. No, I don't call the fonction "stopPropagation". Here is a simpler example that doesn't work either : <g...
61548
G. Wade Johnson
gwadej
Dec 3, 2008 1:11 pm
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...
61549
Dailey, David P.
david.dailey@...
Dec 3, 2008 5:30 pm
Take a look at the following; it lets different events on parts of the group be registered and responded to. Hope it helps David <svg...
61550
julie gautier
jgfa92004
Dec 3, 2008 6:40 pm
Yes, thanks a lot, it will help but is this the only way to achieve this ? So it's not possible at all to fire those 2 events at the same time ? ...
61551
julie gautier
jgfa92004
Dec 3, 2008 8:23 pm
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...
61552
ddailey
ddailey@...
Dec 3, 2008 9:41 pm
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...
61553
Frank Bruder
redurbf
Dec 4, 2008 6:12 am
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...
61556
jgfa92004
Dec 4, 2008 1:46 pm
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...
61557
Erik Dahlström
erida539
Dec 4, 2008 2:30 pm
... 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....
61558
Helder Magalhães
heldermagalhaes
Dec 4, 2008 5:38 pm
... 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...
61559
G. Wade Johnson
gwadej
Dec 5, 2008 12:11 am
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...
61560
Ken Stacey
svgmaker
Dec 5, 2008 4:34 am
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...
61563
Helder Magalhães
heldermagalhaes
Dec 5, 2008 11:43 am
... 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...
61564
Kenneth Nellis
nellisks
Dec 5, 2008 12:34 pm
... 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...
61565
ddailey
ddailey@...
Dec 8, 2008 9:47 pm
http://www.tgdaily.com/content/view/40472/140/ excerpts from the article: "Opera 10 alpha unveiled: Fully web compliant, 30% faster" "Also new: Opacity...
61566
ddailey
ddailey@...
Dec 8, 2008 10:14 pm
W3C's announcement: http://www.w3.org/2008/12/smil3-pressrelease.html Press coverage: Wall Street Journal: ...
61567
Frank Bruder
redurbf
Dec 9, 2008 3:51 am
... What I mean is this: Consider the following code. setInterval(doSomething, 20); setTimeout(somethingElse, 1000); Nominally doSomething() would be expected...