I'm using the ActionScript Tweener from here
I have a scaling animation on one of my images but I can't seem to get it to scale (enlarge) upwards instead of downwards
Tweener.addTween(myImage,
{
scaleX: 1.5;
scaleY: 1.5;
transition: "linear";
}
I have tried modifying my flex component holding the image, but the animation seems to ignore the dimensions of the image container. Any way I can do this using Tweener but without any other external components?