help with flash buttons
help with flash buttons
Out of context: Reply #1
- Started
- Last post
- 2 Responses
- blaw0
on release set a variable specifying which element should not fade out. on release, check to see if the element should fade out before running the tween function.
this.onRelease = function {
active = section01;
}this.onRollOut = function {
if (active==section01){
btn01._visible=true;
}else{
fadeOut(btn01);
}
}