Combined Code
frame 1 {
total = getBytesTotal();
carregando = getBytesLoaded();
porcentagem = Math.floor((total / carregando) * 100);
porcentagem = Math.floor((carregando / total) * 100);
barra_mc._xscale = porcentagem;
if (carregando == total) {
gotoAndPlay(3);
}
}
movieClip 3 {
}
frame 2 {
if (getBytesLoaded() < getBytesTotal()) {
gotoAndPlay(1);
} else {
gotoAndPlay(3);
}
}
movieClip 8 {
}
movieClip 79 {
}
movieClip 86 {
}
movieClip 87 {
}
movieClip 92 {
}
movieClip 108 {
}
frame 181 {
gotoAndPlay('begins');
}