Scale down a movieclip and takting care of proprotions

okey title should say: :frowning:
“Scale down a movieclip and taking care of proprotions”

Hi there.
do anyone have a nice code that will scale down a moviclip
to no bigger than width=500px and height=400px (proprotions must be taken care of)?


var heightPercent:Number = this.height / 500;
			var newWidth:Number = this.width / heightPercent;
			this.height = 500;
			this.width = newWidth;

:block: