I'm using the latest SDK and trying to access dur property of the animateTransform as in:
```
<g transform="translate(50%-24, 95%)">
<animateTransform id="animation" attributeType="scale" ... dur="1"/>
<image ... />
</g>
```
when I try to set dur property as:
```
document.getElementById("animation").dur = 3;
```
It has no effect.
Best AnswerIt's possible that .dur is somehow accessible via animateTransform, although I suspect .dur has been omitted from the JS API.
Maybe you can achieve the effect you want using multiple animations, each of which is triggered by a different event.
Best Answer