Hi I´m having trouble with my buttons to enable them an when not to.
Have a var (loadswf) that changes value on (Press) and goes to and play frame 1.
In frame 1 I have the following code
[AS]if (loadswf != “first”) {
btnStart.enabled = false;
} else {
btnStart.enabled = true;
}[/AS]
The movies starts with wht btnStart disabled but when pressing another button wich changes the value the button still stays disabled?
Any ideas