home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 July
/
Chip_2004-07_cd1.bin
/
tema
/
sw602
/
html
/
flash
/
mapa.swf
/
scripts
/
frame_2
/
DoAction.as
Wrap
Text File
|
2004-02-19
|
273b
|
16 lines
var b = _root.getBytesLoaded();
var t = _root.getBytesTotal();
if(b > 0 && b <= t)
{
loading = "Nahrávání " + Math.round(100 * b / t) + "%";
progress._xscale = Math.round(100 * b / t);
}
if(b != t)
{
gotoAndPlay(1);
}
else
{
gotoAndStop(4);
}