se devi caricarli quando carichi il filmato principale (tenendo presente che così perdi tutti i vantaggi del loadmovie), puoi seguire questo tutorial qua
http://flash-mx.html.it/guide/view_l...dguida=6&id=94
basta che inserisci due controlli invece che uno, il concetto è quello
cambiandolo ad esempio così
onClipEvent (load) {
_visible = 0;
loadMovieNum ("pippo.swf", 2);
loadMovieNum ("gino.swf", 4);
_root.stop();
}
onClipEvent (enterFrame) {
car0 = _root.getBytesLoaded();
tot0 = _root.getBytesTotal();
car2 = _level2.getBytesLoaded();
tot2 = _level2.getBytesTotal();
car4 = _level2.getBytesLoaded();
tot4 = _level2.getBytesTotal();
if (_level2._url != null&&_level4._url != null) {
if (car0 == tot0 && car2 == tot2&& car4 == tot4) {
_level2.nextFrame();
_level4.nextFrame();
_root.nextFrame();
} else {
_visible = 1;
barra1._xscale = Math.round((car0/tot0)*100);
barra2._xscale = Math.round((car2/tot2)*100);
barra3._xscale = Math.round((car4/tot4)*100);
}
}
}