I catch button in the code: this.buttons.Sound.addListener("pressed", this.__sound, this);
And write function, but then I push button sound off/on they didn't work.
__sound: function(){
if (this.buttons.Sound.isEnabled()){
createjs.Sound.volume = 1;
} else {
createjs.Sound.volume = 0;
}
},