Hi there,
I'm trying to make a movieclip scale proportionally only if the item is being resize smaller than the current.
Obviously I can use the ScaleX/Y values like so:
if (cont.scaleX < cont.scaleY ) { cont.scaleY = cont.scaleX; } else { cont.scaleX = cont.scaleY; }
I need to restrict/reset the scale proportions only in special case that the stageWidth/Height are smaller than the movieclip.
Can't do it for the life of me.
Thanks