PDA

View Full Version : fade out preloader and fade in main interface ??? how



booler
April 6th, 2005, 10:06 AM
I want to fade out my preloader and fade in my main interface how do I do it with action script? I've tried a couple if else loops and can't seem to get anything to work please help me out.

frost_oni
April 6th, 2005, 10:55 AM
when you're checking whether everything is loaded [ if(loaded==total) ], put this instead of gotoAndPlay;


preloader._alpha--.

then check with




if(preloader._alpha<=0){
nextFrame();
}



now with the main movie; in the next frame, put something like




main._alpha = 0;
onEnterFrame = function(){
main._alpha++;
if(main._alpha>=100){
delete (this.onEnterFrame);
}