Reputation: 8655
Is there a way to replicate by code what Flash Pro/CC does when you tween
a shape into another one? Maybe a library is already out there?
Or, is it possible accessing some API within AS3 itself?
Upvotes: 0
Views: 201
Reputation: 356
In AS3 you can include:
import fl.transitions.Tween;
However, this does not solve your issue; Tween within AS3 only allows you to Tween a static object, so you are left with two options:
Upvotes: 1