Wutsup Doods,
Anyways, having a preloader issue here, It seems that the preloader I have created will only load 1/2 way, then will jump to the site, however the site isn’t fully loaded yet. I am wondering what could be the cause of that. I wonder if it is because there are multiple movie clips in the animation or something. this is the script I have been using for the preloader:
onClipEvent (load) {
totalBytes =_root.getBytesTotal();
}
onClipEvent (enterFrame) {
loadedBytes =_root.getBytesLoaded();
percentLoaded = Math.round (loadedBytes/totalBytes*100);
gotoAndStop (percentLoaded);
if (loadedBytes ==totalBytes) {
_root.gotoAndPlay (“website”);
}
}
:crazy: