Re: [svg-developers] Re: event listeners in svg tiny

2007-10-09 Thread ~:'' ありがとうございました 。
What is the question?

regards

Jonathan Chetwynd
Accessibility Consultant on Media Literacy and the Internet



On 9 Oct 2007, at 04:32, shydisturbedboy wrote:

anyone?






[Non-text portions of this message have been removed]



-
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 settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 


[svg-developers] Fw: [POLL] User poll on Java version requirements

2007-10-09 Thread Cameron McCormack
Hi everyone.

If you use Batik, could you please take a few minutes to fill out this
survey.  It will help us determine what version of Java we will require
in future releases.

Thanks,

Cameron

- Forwarded message from Jeremias Maerki [EMAIL PROTECTED] -

From: Jeremias Maerki [EMAIL PROTECTED]
Date: Mon, 08 Oct 2007 09:48:11 +0200
To: [EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED]
Subject: [POLL] User poll on Java version requirements

Dear Apache XML Graphics Batik/FOP/Commons users,

as you probably know, all products of the Apache XML Graphics project are
still compatible with Java 1.3. We are currently discussing about
dropping support for Java 1.3 and instead make Java 1.4 the minimum Java
version required to run new releases. There was some talk about going
directly for Java 1.5, too. The main reason: Maintaining support for
Java 1.3 has become increasingly cumbersome which can become a problem
in a mostly volunteer-based environment.

Now, in order to minimize the number of people we upset with such a
change, we would like to know what our users work with and what you
think about this change. We've set up an online survey which we kindly
ask you to fill out. It should not take much longer than 5 minutes.

Please click here to start the survey:
http://www.eSurveysPro.com/Survey.aspx?id=e3155c33-540e-471d-a23e-f6c1f73c8bd2
(the survey ends on Sunday, October 14, 2007)

Please note: Even if we change the minimum Java versions for new
releases, the previous releases with Java 1.3 support will remain
available for download.

Thanks a lot!
Jeremias Maerki
(for the Apache XML Graphics devs)


-
Apache XML Graphics Project URL: http://xmlgraphics.apache.org/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



- End forwarded message -

-- 
Cameron McCormack, http://mcc.id.au/
xmpp:[EMAIL PROTECTED]  ▪  ICQ 26955922  ▪  MSN [EMAIL PROTECTED]


-
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 settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 


[svg-developers] Re: event listeners in svg tiny

2007-10-09 Thread shydisturbedboy
if i register the root, the elements will also be registered right?
does this also apply for jsr 226? for mobile phones? and in
DOMActivate, what does activate mean?



-
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 settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 


RE: [svg-developers] SVG countdown

2007-10-09 Thread Chris Peto
Hi,

 

Try:

 

var obj = document.getElementById(texte);

if(obj  obj.firstChild) obj.firstChild.data = time;

 

Regrads,

Chris

 

From: svg-developers@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
Rémi Boulle
Sent: Montag, 8. Oktober 2007 21:32
To: svg-developers@yahoogroups.com
Subject: [svg-developers] SVG countdown

 

Hi,

I get a bit confused about modifying the content of a text element.
The more I read, the more I feel confused. :-s
I would like to write a SVG code that will launch a countdown when cliking
on a rectangle (whatever the object).
Here is my code :
begin
?xml version=1.0 encoding=UTF-8?
!DOCTYPE svg PUBLIC -//W3C//DTD SVG 1.0//EN 
http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd;
svg xmlns=http://www.w3.org/2000/svg; width=100% height=100% viewBox=0 0 
400 250 onload=init()
script type=text/ecmascript
![CDATA[
var sec = 20; // set the seconds
var min = 00; // set the minutes
function countDown() {
sec--;
if (sec == -01) {
sec = 59;
min = min - 1; }
else {
min = min; }

if (sec=9) { sec = 0 + sec; }

!-- time = (min=9 ? 0 + min : min) +  min and  + sec +  sec ; --
time = sec +  sec ;
if (document.getElementById) { document.getElementById(texte).innerHTML = 
time; }

SD=window.setTimeout(countDown();, 1000);
if (min == '00'  sec == '00') { sec = 00; window.clearTimeout(SD); }
}
]]
/script
text id=texte x=150 y=50 
style=text-anchor:middle;font-size:25;font-family:Arial;fill:redCliquez sur 
le rectangle pour lancer le décompte/text
rect onclick=countDown() x=50 y=100 width=100 height=50
style=fill:red/ /svg
end**
I think that I need to replace the innerHTML by somethnig else like
:objet.getFirstChild().setData(countDown()) (doesn't work).
Any idea ?
Thanks.
Rémi (using FF2)

 



[Non-text portions of this message have been removed]



-
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 settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/svg-developers/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/