Okay I'm writting this function.
function barAlpha(){
if(_root.bar.pink._alpha<=100){
_root.bar.pink._alpha = +5
}else if(_root.bar.pink._alpha >=100){
_root.bar.pink._alpha =100;
}
}
I want it to repeat it until it reaches 100 hundred but it's not
doing this what am i messing. Man it's been awhile since I acutally
had to do this myself.
yes I need it to repeat within the function and not with the press of a button.
I'm sure it's just an easy thing I'm missing but any help would be greatful.
function barAlpha(){
if(_root.bar.pink._alpha<=100){
_root.bar.pink._alpha = +5
}else if(_root.bar.pink._alpha >=100){
_root.bar.pink._alpha =100;
}
}
I want it to repeat it until it reaches 100 hundred but it's not
doing this what am i messing. Man it's been awhile since I acutally
had to do this myself.
yes I need it to repeat within the function and not with the press of a button.
I'm sure it's just an easy thing I'm missing but any help would be greatful.