Everyone loves turtles right?
So here is the fruit of my efforts this summer…
I would really appreciate any feedback anyone might have.
I seem to be having a problem with my preloaders. Especially for the main page. The turtle is supposed to fill up with the load bar and then load the content. It doesn’t seem to be working so well.
My other problem is I have a jpeg background for the entire flash movie. If I place it on the first frame with my preloader my preloader will not load…correct? I read about transparant movies on here on Kirupa but that means anyone using mozilla will see a huge white box if I put it on the second frame when the page loads. Not the best option…any suggestions?
Here is the preloader code I have on the first frame:
stop();
myInterval =setInterval(preloader, 10);
function preloader() {
if (getBytesLoaded() >= getBytesTotal()) {
play();
clearInterval(myInterval)
}
bar._xscale = (getBytesLoaded()/getBytesTotal())*100;
myTextField.text = Math.round(getBytesLoaded()/getBytesTotal()*100)
}
Thanks for looking!