Skip to content
jeff-h edited this page May 17, 2014 · 1 revision

Play a sound

macgap.sound.play("./my/sound.mp3")

Play a system sound

macgap.sound.playSystem("Funk");

Optionally, supply a callback to run when the sound finishes playing.

macgap.sound.playSystem("Funk", function(){
    alert('Sound finished playing');
});
Clone this wiki locally