* Augusto Erzinger Jr. wrote: >Is there anyone who knows how I could stop an SVG animateColor animation >by a way other than direct user interaction like mousedown or click or >focusin? I intend to stop the animation from within a javascript >function. I thougth that I could get it by setting the DOMAttrModified >to the 'end' event attribute of my animated widget, adding an event >listener with parameter DOMAttrModified to it, then (at a specific >moment) setting the 'fill' attribute of the widget (via setAttribute >method). Well... this procedure didn't work.
Use animateColor.endElement(), see http://www.w3.org/TR/SVG11/animate.html#InterfaceElementTimeControl You should generally be able to use end="..." without script though. -- Björn Höhrmann · mailto:[EMAIL PROTECTED] · http://bjoern.hoehrmann.de Weinh. Str. 22 · Telefon: +49(0)621/4309674 · http://www.bjoernsworld.de 68309 Mannheim · PGP Pub. KeyID: 0xA4357E78 · http://www.websitedev.de/ ------------------------ Yahoo! Groups Sponsor --------------------~--> You can search right from your browser? It's easy and it's free. See how. http://us.click.yahoo.com/_7bhrC/NGxNAA/yQLSAA/1U_rlB/TM --------------------------------------------------------------------~-> ----- 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/ <*> 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/

