Activity Forums Salesforce® Discussions How to play BEEP Sound in Salesforce?

  • Parv Shekhar Singh

    Member
    September 3, 2018 at 2:53 PM

    Hi Madhulika,

    You'll need to embed a short WAV file in the HTML, and then play that via code.It's not possible to do directly in JavaScript. It's not possible to do directly in JavaScript.

    <script>
    function PlaySound(soundObj) {
    var sound = document.getElementById(soundObj);
    sound.Play();
    }
    </script>

    <embed src="success.wav" autostart="false" width="0" height="0" id="sound1"
    enablejavascript="true">

    Now, you can call above script in VF page.

    Thanks.

  • shariq

    Member
    September 17, 2018 at 9:31 PM

    Hi,

    To add more -

    There is an App I saw recently, I think its called 'Ring my Bell', which sounds a bell every time an Opportunity is closed. You need to look into the app and see what they use.

    Hope this helps.

  • Parul

    Member
    September 22, 2018 at 5:34 AM

    Adding some points:

    You do this by using Javascript . You’ll need to embed a short WAV file in the HTML, and then play that via code.

    <script>
    function BeepSound(soundObj) {
    var sound = document.getElementById(soundObj);
    sound.Play();
    }
    </script>

    <embed src=”success.wav” autostart=”false” width=”0″ height=”0″ id=”sound1″
    enablejavascript=”true”>

     

    And then you can call this javascript method from Visualforce page like:

    <apex:commandLink value=”Beep Button” onclick=”BeepSound(Sound1)” />

     

    Thanks

Log In to reply.

Popular Salesforce Blogs

Popular Salesforce Videos

Pros & Cons of Lightning Component vs. 3rd party frameworks in Salesforce UI development

Video in

Nikita drops by to share his invaluable experience of using popular 3rd party frameworks in Salesforce. http://media.blubrry.com/salesforceway/audio.xmcdn.com/group42/M05/25/57/wKgJ81rXk6XjaZIAAU_I_KtprFM998.m4a