I have a .swf file that uses a basic percentage preloader:
loaded = Math.round(this.getBytesLoaded());
total = Math.round(this.getBytesTotal());
getPercent = loaded/total;
this.Text = "Loading file… " + Math.round(getPercent*100) + “%”;
if (loaded == total) {
this.gotoAndPlay(3);
}
which works fine. However, when I put the file within another .swf, it doesn’t work. What could the problem be? I apologize if this question has been asked a million times before. Thanks