Hola!!
Creá una capa nueva que tenga fotogramas en blanco, seleccioná un fotograma, presioná F9 (actions), y escribí este código:
Código:
Stage.scaleMode = "noScale";
function posicionar(){
ceroX = (1000 - Stage.width)/2;
ceroY = (560 - Stage.height)/2;
cont._x = ceroX + 5;
cont._y = ceroY + 5;
cont._width = Stage.width - 10;
cont._height = Stage.height - 10;
}
var stageListener:Object = new Object();
stageListener.onResize = function(evt:Object) {
posicionar();
}
Stage.addListener(stageListener);
posicionar();
suerte,