Activity › Forums › Salesforce® Discussions › How to get a beep sound in Salesforce Visualforce Page?
-
How to get a beep sound in Salesforce Visualforce Page?
Posted by Tanu on July 20, 2016 at 2:04 PMHow to get a beep sound in Salesforce Visualforce Page on insertion of any account?
Parul replied 7 years, 7 months ago 4 Members · 3 Replies -
3 Replies
-
Hi Tanu,
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)” />
- [adinserter block='9']
-
Hello Tanu ,
It’s not possible to do directly in JavaScript or Visualforce page. You’ll need to embed a short WAV file in the HTML, and then play that via code.
-
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’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.
Log In to reply.