Sí, te explicaste bien desde el principio. Al menos yo te entendí. Mmm... se podría hacer un apaño así:
Código :
liCarga.onLoadInit = function(target_mc){
target_mc._x= (Stage.width - target_mc._width) / 2;
target_mc._y = 112.5;
new Tween(_root.picture1, "_x", None.easeOut, _root.picture1._x+_root.picture1._width/2, _root.picture1._x, 1.4, true);
new Tween(_root.picture1, "_y", None.easeOut, _root.picture1._y+_root.picture1._height/2, _root.picture1._y, 1.4, true);
new Tween(_root.picture1, "_xscale", None.easeOut, 10, 100, 1.4, true);
new Tween(_root.picture1, "_yscale", None.easeOut, 10, 100, 1.4, true);
}
Con este código, lo que hacemos es mover el clip a la vez que lo escalamos. Así parece que se agranda desde un punto central (aunque en realidad no sea así).