Hi,
Post some sample code of how you have your preloader set up. There are many different ways to code a preloader but for the most part it is just a matter of checking getBytesLoaded to see if it is equal to getBytesTotal. Example3 frame preloader......
Frame 1...
Code:
//you could leave this code out and make it a 2 frame preloader
//but I like having the extra check
ifFrameLoaded (2) {
gotoAndPlay(2);
}
Frame 2...
Code:
total = int(_root.getBytesTotal());
download = int(_root.getBytesLoaded());
if (total == download) {
_root.gotoAndPlay("mainstart");
} else {
play();
}
Frame 3...
Code:
gotoAndPlay(2);
Hope it helps
NTD
Bookmarks