Preloader idiot
Hey,
I am terrible at Actionscript. I shouldn't use it, but because I built my enitre site in Flash I need to use it. I need to create a preloader that when it's done loading, the loading bar dissapears and a Enter button appears.It's loading the entire site, and I'm using 2.0.
stop();
onEnterFrame = function(){
if (_root.getBytesLoaded() == _root.getBytesTotal()){
delete onEnterFrame;
gotoAndStop(2);
}
}
That is what I'm using to load my enitre site. It works, but of course there is no loading bar and I have no idea how to attach one. Further more you can tell it jumps to frame two when what I really want is for it to bring up an Enter button so the viewer can choose when to enter and go to frame 2.
Hope this all makes sense. Thanks for the help.