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. Thanks, David ----- 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/

