MC ploader %age count up is not shown as movie loads onto another one

xy100c.swf is loaded by means an empty (instance name is xy100c)
mc unto intro.swf which is loaded on level 10 over a basemovie.swf (this one level0);…

loadMovie(“swf/xy100c.swf”,“xy100c”);

the test with bandwith profiler reveals xy100c.swf´s preloader is perfectly operational ;
however in the site as “xy100c.swf” loads the percentage counting up is not shown (there is a light movie clip to entertain during pre loading which works fine) ;
the question is , what´s amiss ??
Thank you all for the attention

PS:-
p loader code is the well known :

totalK = getBytesTotal()/1000;
loadedK = getBytesLoaded()/1000;
remainingK = totalK-loadedK;
percentageK = Math.round((loadedK/totalK)*100);
if (loadedK>=totalK && totalK != 0) {
gotoAndPlay (3);
}