есть прелоадер грузт сам себя а как сдеать чтоб он также грузил 2 файла
1.pm3, 2mp3,то есть я хочу чтоб по окончанию процентa не тольо главный флеш но и 2 вншних mp3 были загруены спасибо!

Код:
// Initializations
loaded_bytes = _root.getBytesLoaded(); //Loaded Bytes already
total_bytes = _root.getBytesTotal(); // Get the total bytes of the swf
loadpercent = (loaded_bytes/total_bytes)*100; // The current exact percentage done
// Lets check if it reached 100..
if (loadpercent != 100) {
// OPTIONAL: Place the percentage on some textfield
preloaderText.text = int(loadpercent) + '%';
// Goto respected load percentage since not done
bar.gotoAndStop(int(loadpercent));
} else {
// Goto the "Main" Scene since its done
gotoAndPlay("start");
}