0

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" />
Adam
  • 2,632
  • 8
  • 34
  • 60

1 Answers1

1

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

Gregor Kiddie
  • 3,119
  • 1
  • 19
  • 16