con esattezza con un'altra action che crea un movieclip "sfondo", anche questà è il risultato di ricerche e consigli vari come la prima, ed è la seguente:

Codice PHP:
import mx.transitions.*;
import mx.transitions.easing.*;
Stage.align "TL";
Stage.scaleMode "noScale";
Stage.showMenu false;
var 
drawRectangle:Function = function (target:MovieClipname:Stringlevel:Numberwidth:Numberheight:Numbercolor:Number) {
    
target.createEmptyMovieClip(namelevel);
    
with (target[name]) {
        
moveTo(00);
        
lineStyle(0color0);
        
beginFill(color100);
        
lineTo(width0);
        
lineTo(widthheight);
        
lineTo(0height);
        
lineTo(00);
        
endFill();
    }
};
var 
sfondo:MovieClip this.createEmptyMovieClip("sfondo"1);
function 
entra(movie:MovieClip) {
    new 
Tween(movie"_y"Regular.easeOutMath.round(Stage.height/2)-275Math.round(Stage.height/2)-2753true);
    new 
Tween(movie"_x"Regular.easeOutMath.round(Stage.width/2)-200Math.round(Stage.width/2)-2001true);
}
entra(sfondo);
var 
mload:MovieClipLoader = new MovieClipLoader();
var 
mlist:Object = new Object();
mlist.onLoadInit = function(target) {
    
target._x Math.round((Stage.width-target._width)/2);
    
target._y Math.round((Stage.height-target._height)/2);
    
target._alpha 0;
    
target.onEnterFrame = function() {
        if (
this._alpha<100) {
            
this._alpha += 3;
        } else {
            
delete this.onEnterFrame;
        }
    };
};
mload.addListener(mlist);
mload.loadClip("esterno.swf"sfondo);

// Permette di aprire tutti i percorsi si "sfondo"...
sfondo._lockroot true;

// Setto la posizione iniziale di "sfondo"
_level0.sfondo._x 0;
_level0.sfondo._y 60;
var 
fluid:Object = new Object();
fluid.onResize = function() {
    
_root['resize']();
    var 
sy:Object = new Tween(sfondo"_y"Regular.easeOutsfondo._yMath.round((Stage.height-sfondo._height)/2), 30false);
    var 
sx:Object = new Tween(sfondo"_x"Regular.easeOutsfondo._xMath.round((Stage.width-sfondo._width)/2), 30false);
};
Stage.addListener(fluid); 
...questa è messa su un livello diverso e a dire la verità funziona pure, solo che "esterno.swf" non sempre è al centro in quanto ci sono alcune pagine con delle maschere laterali (in pratica con oggetti nascosti) che in un certo senso me lo decentroano, o meglio lo scrip appena riportato me lo decentra...non so se sono riuscito a spiegarmi bene...