views:

127

answers:

1

I need a simple rainbow trajectory motion in Flex builder.

We have 2 points [(x1, y1); (x2, y2)], we need to animate object from one to another over some simple rainbow trajectory like in this picture in 10 seconds

alt text

What libs could you suggest for such an operation?

+1  A: 

I like TweenMax a lot. It is very simple to use. For your scenario you can probably move along a bezier curve, which they also support.

http://blog.greensock.com/tweenmax/

Stefan