Si tienes ese código no verás nada del preload, pq no hay ningún bucle como bien dice TMeister. Deberías hacer algo como:
Código:
//TRABAJO CON RUTAS RELATIVAS POR SI ACASO
this.createEmptyMovieClip("mcLoader",1);
mcLoader.onEnterFrame=function(){
if (this.getBytesLoaded()>=this.getBytesTotal()) {
gotoAndPlay("inicio");
delete mcLoader.onEnterFrame;
}
A = ((this.getBytesLoaded()/this.getBytesTotal())*100);
porcentaje = Math.round(A)+"%";
barra._xscale = A;
};