Hi all,
Here is an ease class that exactly replicates the Flash IDE classic tween easing (where you can enter a value in the range -100..100 for a timeline ease).
A customer of mine wanted to be able to use the values he always worked with so I replicated the ease function used in the Flash IDE.
Use it as you like. Create a file for the code and place it in com.greensock.easing.
Usage example :
TweenLite.to(mc, 2, {x:100, ease:ClassicEase.ease, easeParams:[50]});
This will tween the mc.x property to 100 with an classic tween ease of value 50.
package com.greensock.easing