Thanks, and when you click on french option does it work for you?
Printable View
Thanks, and when you click on french option does it work for you?
ok, and when you click on the french option without preloader, does it work 4 u?
http://www.colorzest.com/bonito/index.html
ye it does
thanks dude! Does anyone has the courage to see why my preload does not work?
here's the link:
http://www.colorzest.com/files/ingles2.fla
The code in there was nonsence man, I replaced it and all works now, download your fla here:
http://www.chemicaldesigns.org/test_sector/ingles2.zip
I can't open the FLA, I have flash 8, you have a newer one? could you change the version...or post the new code?
post this instead of current preloader code:
Code:stop();
this.onEnterFrame = function() {
var loadedB = _root.getBytesLoaded();
var totalB = _root.getBytesTotal();
var percent = Math.round((loadedB/totalB)*100);
var loadedKb = Math.round(loadedB/1000);
var totalKb = Math.round(totalB/1000);
percy_txt.text = percent+"%";
bar.gotoAndStop(percent);
data_txt.text = loadedKb+"/"+totalKb;
if (percent >= 100) {
gotoAndPlay(2);
delete this.onEnterFrame;
}
}