View Single Post
  #3   Spotlight this post!  
Unread 31-12-2003, 05:39
sevisehda's Avatar
sevisehda sevisehda is offline
Registered User
#0666
 
Join Date: Jan 2003
Location: The South
Posts: 215
sevisehda is an unknown quantity at this point
Send a message via AIM to sevisehda
Re: Making sound in JAVA

I've never looked into creating sound in JAVA. However I do know its possible to create a system beep, or something close to it. Just use a \7 as you would a \n for a line return.


Example:

public class beep
{
public static void main (String[] args)
{
System.out.print("\7");
}
}