ne ho trovato uno già fatto...
questo è quello che ho nel primo frame:
totalbytes = getBytesTotal();
bytesloaded = getBytesLoaded();
total = totalbytes * 100 / 100;
p = 100 * (bytesloaded / total);
percent = int(bytesloaded / totalbytes * 100);
if (percent < 0)
{
percent = 0;
percent = int(p);
} // end if
{
gotoAndStop(int(_parent.percent / 2));
} // End of TellTarget
e questo è nel secondo frame:
if (bytesloaded >= totalbytes)
{
_parent.gotoAndstop("Main", 1);
}
else
{
gotoAndPlay(1);
} // end else if
-----
può andar bene?

Rispondi quotando