On 3 sept. 07, at 16:11, Roger F. Gay wrote: > What I'd like to do is animate the motion (then I'll try to alter > that instead of what I've been doing). But I can't get it to work. > The svg that I'm currently generating is as follows. The actual > effect is that it just shows up in the translated position. It does > not move from one position to another over a period 2s as I intend. > > <?import namespace = svg urn = "http://www.w3.org/2000/svg" > implementation = "#AdobeSVG" declareNamespace /> > <svg:svg height="492" width="851" xmlns:svg="http://www.w3.org/2000/ > svg" name="svg_image"> > <svg:g id=circg style="stroke: black; stroke-width: 1; fill: white"> > <svg:circle id=robot1 transform="translate(200,190)" cy="30" > cx="30" r="20"> > <svg:animateTransform id=animt repeatCount="1" dur="2s" > begin="indefinite" to="212,244" from="30,30" type="translate" > attributeName="transform"> > </svg:animateTransform> > </svg:circle> > </svg:g> > </svg:svg>
It can't, given the animation is never started. If you use begin="indefinite", you have to make a call to .beginElement() to launch the animation, otherwise nothing'll happen. Antoine -- Blog — http://the.fuchsia-design.com ----- 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/

