Because of many Tween tools default ease transition didn’t meet our needs so I create it.
I create a custom tween transition effect tools for any tween tools or other.
This is a custom tween ease transition effect,you can use it for your any tween tools.
When you need a ease effect but your tween tools didn't achieve the transition of you want,then you can use Easer Tools for it.
It's really very practical and convenient.
1.Fully customizable EASE effect
2.Support tween,tweener,tweenlite,tweenMax etc...
step 1.You just use Easer Tools set yourself custom ease effect for your tween.
step 2.copy the code for your project.
Here is a Examplete for your project:
--------------------------------------------------------------------------------------
import com.activetofocus.easer.Easer;
import caurina.transitions.Tweener;
var easerArr:Array = [{Nx:100,Ny:-100,Mx:0,My:0},{Mx:200,My:-200}];
// easerArr array for your custome Easer effect
Tweener.addTween(mc,{y:29, time:1, transition:Easer.getEaseFun(easerArr)});
//If you use tweenlite
//TweenLite.to(mc,1,{y:29,ease:Easer.getEaseFun(easerArr)});
--------------------------------------------------------------------------------------
< --- Click Here Down All Assets --- >
source from : http://activetofocus.com/blog/easer-custom-ease-effect-for-tween-tools-47/
+