Hi,
I want to create a beep on server error in a webpage. I have searched and read the pages below on to display sound on webpage.
http://www.phon.ucl.ac.uk/home/mark/audio/play.htm
But i can't ask users to install plug ins and other stuff. I need to generate two beep on PC speaker. I have tried to use System.out.print("\\007");
and Toolkit.getDefaultToolkit().beep();
but nothing is working. In my JSP i Called in this way:
<%
Toolkit.getDefaultToolkit().beep();
System.out.print("\\007");
%>
Is there any way i can generate sound?