Flash : Button Q
Flash : Button Q
Out of context: Reply #2
- Started
- Last post
- 5 Responses
- gabe0
you can either totally disable the button, e.g.
buttonOne.enabled = false;
or, set a variable within the button and check it before you execute the button's function, e.g.
buttonOne.enabledStatus = false;
on(release)
{
doSomething();
if( enabledStatus != false )
{
doSomethingElse();
}
}