stopSound

API -

return function()
    local app = getApp();
    local soundId = app.playSound('myCustomSound', false);
    app.stopSound(soundId);
end

Last updated