Hola a todos. Tengo un sript que permite redimensionar una imagen de fondo al ampliar o reducir el navegador y lo que necesito ahora es ponerle objetos que se queden fijos en un sitio, por ej en el lado izquierdo o inferior. Pego el script para que lo veais.
 
 
Stage.scaleMode = "noscale";
//-----------------------
var StageWidth:Number = 550;
var StageHeight:Number = 400;
function escalaFondo()
{
   if (Stage.width > Stage.height) {
      fondo._width = Stage.width;
      fondo._yscale = fondo._xscale;
   } else {
      fondo._height = Stage.height;
      fondo._xscale = fondo._yscale;
   }
   fondo._x = (StageWidth - fondo._width) / 2;
   fondo._y = (StageHeight - fondo._height) / 2;
}
//-----------------------
Stage.addListener(this);
this.onResize = escalaFondo;
escalaFondo();
//-----------------------
stop(); 
  
 
