Well that's good then cause Tweensy 0.2 supports this.
I should of given you a bit more information in that last email though
the classes CurveLine, Line and Gradient can be used on there own they
are best used with the VectorLayer class. I have put together an
example to demonstrate this and how you would tween the Point Object
parameters in order to tween the CurveLine. But if you want to do a
simple Line just exchange the class names because CurveLine extends
Line.
package {
import fl.motion.easing.Elastic;
import com.flashdynamix.motion.*;
import com.flashdynamix.motion.layers.VectorLayer;
import com.flashdynamix.motion.vectors.*;
import flash.display.Sprite;
import flash.geom.Point;
/**
* @author FlashDynamix
*/
public class TweensyCurveLine extends Sprite {
protected var layer : VectorLayer;
protected var tween : TweensyGroup;
public function TweensyCurveLine() {
layer = new VectorLayer();
tween = new TweensyGroup();
var line : CurveLine = new CurveLine(true);
line.style = [1, 0x000000];
layer.add(line);
var pt1 : Point = new Point(175, 200);
var pt2 : Point = new Point(275, 100);
var pt3 : Point = new Point(375, 200);
var timeline : TweensyTimeline =
tween.to(pt2, {y:"100"}, 1,
Elastic.easeOut);
timeline.repeatType = TweensyTimeline.YOYO;
line.pts = [pt1, pt2, pt3];
addChild(layer);