Activity › Forums › Salesforce® Discussions › How to play BEEP Sound in Salesforce?
-
How to play BEEP Sound in Salesforce?
Posted by madhulika shah on September 3, 2018 at 2:03 PMPlease explain how to play BEEP Sound in Salesforce?
Parul replied 7 years, 7 months ago 4 Members · 3 Replies -
3 Replies
-
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.
- [adinserter block='9']
-
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.
-
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.