Hi everybody thanks for reading! i have a few actionscript questions that i really need help on…any help would be greatly appreciated! Okay so i came upon this tutorial: http://www.kirupa.com/developer/mx/fadegrid2.htm It looks awesome! I absolutly love it but i’m not quite sure how to apply it to my banner. My banner consists of 3 movie clips that moves…like instead of a still image like the one shown on the tutorial there are several text fading in and stuff… also the movie clips they fade from one movie to another…i used this actionscript to make it alpha fade from one to another…
function fadeInObject(target) {
loading_mc._alpha = 0;
onEnterFrame = function () {
loading_mc._alpha += 5;
if (loading_mc._alpha >= 100) {
loading_mc._alpha = 100;
delete onEnterFrame;
}
};
All my movie clips are loaded in through XML so my variables name is loading_mc i also have 2 buttons which allows users to navigate…if nothing is pressed than the movie just rotates by itself… I really want to apply the fading grid effect but i am really confused. I tried to do exactly what i was told but it didn’t work. Any help would be great…it doesn’t have to be the grid effect but that is prefered… I just want a really cool transition between the banners using pure actionscript:} Thanks again for reading this!!