We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
To create a button you do the following.
var button = new Button(); button.upSkin = "buttonUp"; button.downSkin = "buttonDown"; button.overSkin = "buttonOver"; button.selectedSkin = "buttonSelected"; button.disabledSkin = "buttonDisable"; button.setWidth(100); button.setHeight(30); button.build(); button.setStyle(); button.arrange(); button.activate(); addChild(button);
To disbale the button you call 'diable' function
button.disable();
To Deactivate the button you call 'deactivate' function button.deactivate();
There was an error while loading. Please reload this page.