views:

18

answers:

1

I'm trying to animate (rotate) an image in flex4 but it seems that flex is adding easing to my animation by default. How can I over ride this so my rotate doesn't have any easing.

Here the line of code I'm using

<s:Rotate angleFrom="0" angleTo="1080" duration="10000" autoCenterTransform="true" />
+1  A: 

You probably want to set the easer property of the Rotation so that it is linear.

Gregor Kiddie