Hi all,
Im not a “leet” on flash and i’ve a doubt that im going to explan now…
I have made a intro for my site and I put a preload on it, it happens that before the intro flash makes the preload it shows up a blank screen in 1-2 seconds.
How i can resolve it? becaouse i see sites made in flash and it neve shows the blank screen :s
In the first Frame i have that code for preload:
Bytesloaded = _root.getBytesLoaded();
Bytestotal = _root.getBytesTotal();
percent = Math.round((Bytesloaded / Bytestotal) * 100) + "%"
if (Bytesloaded >= Bytestotal) {
gotoAndStop(3);
}
Cheers.