How embarrassing for Sencha that you are a representative.
Printable View
i have done it this way (JavaScript + embed): (maybe not be the right way but it works for me)
in my index.html:
in one of my javascript source files, i have added a function to play the beep sound.Code:<embed src="resources/assets/notify.mp3" autostart="false" width="0" height="0" id="notify"></embed>
Code:beep : function() {
var sound = document.getElementById("notify");
sound.Play();
}