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