flash question
flash question
Out of context: Reply #12
- Started
- Last post
- 14 Responses
- autonoma0
Actually, you CAN turn a button off kpl, as long as you are using Flash MX..
With an if statement, you can do something like this:
if (!myVariable) {
myButton.enabled = false;
} else {
myButton.enabled = true;
}