ok... so i m making this movie, right? i m making the preloader and i am like || this close to making it work :P but i need someone's help because the script isnt working properly. here is the script i put in frame one of layer 1 of the preloader scene :
frame 2 has the play button. so whats happening is that when i start the movie it skips the preloader :/. only loads part of the movie and comes to frame 2, only shows the preloader for like 1 sec. the movie is 28 scenes long (dont ask y), it has hundreds of symbols, like movie clips, graphics, and buttons; its not suppose to take like 1 sec to load the whole movie. if you are good at flash or know how to work a preloader plz tell me thnx.Code:total_bytes = _root.getBytesTotal(); loaded_bytes = _root.getBytesLoaded(); percent_done = int((loaded_bytes/total_bytes)*100); bar.gotoAndStop(percent_done); if (loaded_bytes == total_bytes) { ****gotoAndStop(2); } else { ****gotoAndPlay(1); }.