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);
}
Powered by vBulletin® Version 4.1.10 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.