is there a way to disable all but 1 buttons on a stage?
thanks
Printable View
is there a way to disable all but 1 buttons on a stage?
thanks
button.enabled=true;
otherButton.enabled=false;
someButton.enabled=false;
gparis
thanks for the help but isn't there a disable all buttons function? because i have to disable a lot of dynamic buttons...
no. But you can use 'for loops' to target multiple instances.
gparis