On 7/25/06, 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> > Just a suggesttion: "Animate" is classified as "attribute". In many cases attribute'things and style's are interchangeable- I mean you can use in either places. You can try to use CSS: <style> . . . . But this would be browser/SVG player specific. FF and IE handle those differently. As an example and As Svg player developer I have seen a thing like 'Stroke' appear in all three places::CSS/class, attribute and style and they all have different value. Really I don't know which one is the author's intention. Good luck. Phi 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 > > > -- Phi - Tran Hugely increase your speed, saving your band-width with ZipProtocol plus crystal clear SVG Rendering image at HTTP://oneplusplus.com [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/ <*> 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/

