allora sul filmato che lancia ilload movie sul frame metti questo codice
codice:
//funzione preload
function preload1(clip1, width1, height1){
car = clip1.getBytesLoaded();
tot = clip1.getBytesTotal();
if(car == tot && tot>1024){
clearInterval(c);
if (clip1._width > width1 || clip1._height > height1){
clip1._width = width1;
clip1._height = height1;
}
}
};
poi sul pulsante che lancia il loadMovie
codice:
tuotarget.loadMovie("tuo-file.swf");
c = setInterval(preload1, 100, _root.tuotarget, 455, 320);