Hi,

You could always use movieClipLoader, like so
PHP Code:
MyLoader = new MovieClipLoader();
MyListen = new Object();
MyLoader.addListener(MyListen);

MyLoader.onLoadStart = function(ContainerMC)
{
    
my.text "0%";
};
MyLoader.onLoadProgress = function(ContainerMC)
{
    
Math.round(ContainerMC.getBytesLoaded());
    
Math.round(ContainerMC.getBytesTotal());
    
int(100);
    
my.text "%";
    
trace(P);
};
MyLoader.onLoadComplete = function(ContainerMC)
{
    
my.text "Complete";
};
MyLoader.onLoadInit = function(ContainerMC)
{
    
// Now do things
};

MyLoader.loadClip("target.swf",ContainerMC); 
or setInterval(), like so
PHP Code:
function DoLoad()
{
    
ContainerMC._alpha 0;
    
Math.round(ContainerMC.getBytesLoaded());
    
Math.round(ContainerMC.getBytesTotal());
    
int(100);
    
my.text "%";
    if (
>= 100)
    {
        
ContainerMC._alpha 100;
        
my.text "Complete";
        
clearInterval(DoLoader);
    }
}
loadMovie("target.swf"ContainerMC);
DoLoader setInterval(DoLoad100);