Preloader.... i'm getting crazy

Hi,

i’m still playing with my preloader.
basically i do not want to split my preloader swf filefrom my main movie file.
so everything is in 1 swf file.

on the first frame i have the following code:


// Set up the loader object
stop();

import flash.display.MovieClip;
import flash.events.Event;
import flash.events.ProgressEvent;

var tfFormat:TextFormat = new TextFormat();
tfFormat.align = "center";
tfFormat.font = "Verdana";
tfFormat.size = 12;
tfFormat.color = "0x8080FF";
tfFormat.bold = true;

this.Progressbar.ProgressText.text = "Loading 0 %";
this.Progressbar.ProgressText.setTextFormat(tfFormat);

var lg = root.loaderInfo.parameters.lng
loaderInfo.addEventListener(ProgressEvent.PROGRESS, loadProgress);
loaderInfo.addEventListener(Event.COMPLETE, loadComplete);
loaderInfo.addEventListener(Event.ENTER_FRAME, enterInFrame);

function enterInFrame(e:Event):void
{
	trace("EnterFrame");
}

function initHandler(e:Event)
{
	trace("Init Handler");
}

function showPreloader(event:Event):void
{
	trace("Show Preloader");
}

// Update the percentage display
function loadProgress(event:ProgressEvent):void 
{
	var percentLoaded:Number = event.bytesLoaded / event.bytesTotal;
  percentLoaded = Math.round(percentLoaded * 100);
	this.Progressbar.ProgressText.text = "Loading " + String(uint(percentLoaded)) + " %";
	this.Progressbar.ProgressText.setTextFormat(tfFormat);

	trace("Loading " + String(uint(percentLoaded)) + " %");
	trace("Bytes loaded : " +event.bytesLoaded);
}

// Load complete, hide the animating graphic and text
function loadComplete(event:Event):void 
{
    trace("Load Complete");
}

when i simulate download via internet as DSL, i’m not able to see any progressbar or text display the current status of loaded bytes… only at the end of the process… when everything is loaded.

i played also with publish setting “load order” but without success.
my AS layer (including the script) is on the top of all layers.

so where is the problem ?

thx.

A.

PS : here is a link to a little video about my issue :
Explore Alain Roger