On Tue, 25 Jul 2006 19:58:34 +0200, ddailey <[EMAIL PROTECTED]> wrote:
> I have a nice transform that I like such as: > > <animateTransform attributeName="transform" additive="sum" > type="translate" > dur="7s" values="50 0;0 0;50 0" repeatCount="indefinite"/> > > I wanted to reuse it as follows (I've given it an id, taken out its > "values" > attribute and hidden in a <defs>). : > > <defs> > <animateTransform attributeName="transform" id="AT" additive="sum" > type="translate" dur="7s" repeatCount="indefinite"/> > </defs> > > Then: > > <use xlink:href="#AT" values="50 0;0 0;50 0" /> > > This sort of thing works with normal SVG, but I can't seem to get it > working > with SMIL things. Is there some reason it might not be possible? If so I > can > quit trying. I think it's not possible with non-presentation attributes. Presentation attributes/properties are cascaded, but unless stated otherwise (as for gradients xlink:href inheritance for example) attributes (like 'values') are not inherited. Regards /Erik -- Using Opera's revolutionary e-mail client: http://www.opera.com/mail/ ----- 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/

