OK guys check this out
www.isidromedia.com/main.html
as you notice the percentage is playin altho the movie is already loaded and playing? what gives?
here is my code
taken orig from kirupa site…with a fewwww mod.
stop();
my_mc = new MovieClipLoader();
preload = new Object();
my_mc.addListener(preload);
preload.onLoadStart = function(targetMC) {
_root.ptext._visible = true;
};
preload.onLoadProgress = function(targetMC, lBytes, tBytes) {
_root.ptext.text = Math.round((lBytes/tBytes)*100);
};
preload.onLoadComplete = function(targetMC) {
ptext._visible = false;
};
//default image
my_mc.loadClip(section + “.swf”, “container”);
the box int the middle ont come down unless that section is loaded.
im stumped
thanks guys