Gracias! Aunque yo lo estoy haciendo en AS2.. pero me voy a estudiar lo q me mandas ^_^
Ya resolví el problema gracias a otro compañero, os dejo como se solucionó por si algún día le sirve a alguien:
Código:
foto_mc._width = (Stage.width-100);
foto_mc._Yscale = foto_mc._Xscale;
if (foto_mc._height > (Stage.height - 100)) {
foto_mc._height = Stage.height - 100;
foto_mc._xscale = foto_mc._yscale;
}
foto_mc._x = (Stage.width/2)-(foto_mc._width/2);
foto_mc._y = (Stage.height/2)-(foto_mc._height/2);