create a shape tween of two graphics
Hello,
I am attempting to create a shape tween on the fly.
I have two bitmap graphics (bmp1, bmp2) already created with the BitmapData class using the contents of an object (label1):
var myBitmapData1:BitmapData = new BitmapData(150, 150);
myBitmapData1.draw(label1, matrix, null, null, null, true);
var bmp1:Bitmap = new Bitmap(myBitmapData1);
What I want to do is take bmp1 and bmp2, and create a shape tween on the fly with those two bitmaps.
Then be able to step back and forth along the timeline of that new shape tween.
How do I go about doing this?
I've been searching and trying for a few days now and can't find any way to create the shape tween on the fly with essentially two variable objects.
Thanks for any help you can offer,
George