OK, first of all, HI! I love the forum... anyways...
I was working ona simple menu with buttons and I can't seam to figure out how to get the things to fade out.. its like this:
I have a button on the bottom that
should fade out the text that is above (just a mc). But every time i try, it just quickly dissapears...
HELP ^_^
Here's what i have for the button:
Code:
function fadeAllOut() {
count=95;
while(count>0){
setProperty("AboutInfoText",_alpha,count);
updateAfterEvent();
count = count - 1;
}