beep

What is the easiest way I can create a 'beep' sound from a Ruby program?

I'm making a small ruby command line script and I wanted to know what the simplest way to have the program emit a beep is. ...

Beep library for Java?

In Java, is there any functions that can emit a (motherboard) beep with a given frequency and duration? In many languages I've worked with, you can; Beeps are useful for indicating certain types of errors, also for easily generating music. The standard way to beep would be either print the BEEP character (\007 or something) or to use To...

How do I make Javascript beep?

I want to my web page to beep whenever a user exceeds the maximum character limit of my textarea. ...

Windows - Can console output inadvertently cause a system beep?

I have a C# console application that logs a lot to the console (using Trace). Some of the stuff it logs is the compressed representation of a network message (so a lot of that is rendered as funky non-alphabetic characters). I'm getting system beeps every so often while the application is running. Is it possible that some "text" I am wr...

C#: Produce a continuous tone until interrupted

Hi all, I have a device that a user interacts with alongside of a C# WPF program. This program must beep when the user presses a button on the device, for either a specified amount of time or for as long as the user presses the button, whichever is shorter. The only speaker available to produce the beep/tone is the computer BIOS speak...

how to make MSVC6 stop beeping when a build is complete

My company uses MSVC6 for all development. I've recently been involved in a project to upgrade to VS2008, so I haven't touched the older compiler in several weeks. This morning, I updated the old compiler's SVN checkout and ran a build, and suddenly every time it finishes building a project, it beeps the PC speaker. This is rather ann...

.Net WinForm System Beep on a 64 Bit OS

My application needs to beep when validation fails so the user (who may be several feet away) may hear it. I'd like to use the Console.Beep() but this is unavailable in a x64 environment (see the remarks). There may or may not be speakers in/at the computer, so I can't use System.Media.SystemSounds.Beep.Play(). The current target platf...

PC Speaker beep via javascript?

I'm revisiting an ID scanner station program we built ages ago and I have a request from users to make a system beep. We're considering moving the system to a web browser, but is it possible to invoke a speaker beep via javascript or something? It doesn't need to be cross-browser compatible, but it probably needs to work on Windows or Li...

Is it possible to generate complex tones in C#?

I need to create a sound containing tones of many different frequencies. Is there any way to do this in C#? The only tone generating methods I've seen so far involve console.beep, which works, but only for pure tones (single frequencies). ...

Secure iPhone-Desktop Connection

Background There are a lot of App Store released iPhone apps that require an IP based server on the desktop so that the iPhone can connect to the desktop as a client. For example, there are many programs that emulate a keyboard, touchpad, or Apple remote on the iPhone so that a desktop computer can be controlled over wifi. However, many...

How to make PHP output a sound (beep)?

What's the PHP verson of this python code? import winsound winsound.Beep(537, 2000) ...

Duplicating effects: Dreamweaver Pong Easter Egg Beep

I don't want to actually MAKE the pong easter egg, but for anyone with Dreamweaver, try typing 'dreamweaver' into the color selection box to play a round of pong. The bit that I want to know how it works is the bit at the end once you lose. After your loss, it will immediately play a small tune, whether or not your volume is on. In fac...

Indefinite system speaker beep

Now, I know that I can play a beep of a set duration with Console.Beep, but what I'm looking for is a way to indefinitely play a sound of a certain frequency, like a start and stop function. Any ideas? ...

Java: way to completely disable any Swing unwanted beeps?

I am working on a fairly complex Java application using Swing. On some occasions there are unwanted beeps without any user intervention. No crash, application keeps working fine, I'm respecting the EDT rules etc. Yet in some cases a beep can be heard: I may be doing something silly triggering that beep but in any case it s not a user a...

Disable Beep Sound in Vb 6

When I press Ctrl+other keys in a TextBox in VB 6.0, the system plays a beep sound. How can I disable this in VB 6.0? ...

Android sound starter project for Eclipse

Is there an example Hello Sound project for Android that will show how to create beep sounds of a variable tone and duration? ...

Chrome Beeps on removeAllRanges();

Is chrome beeping during a "removeAllRanges();" to indicate an error in the code, or just that an action has been taken? My script does not seem to fail... ...

What should I use to replace the WinAPI Beep() function?

I've got a Visual C++/CLI app which uses beeps to signify good and bad results (used when the user can't see the screen). Currently I use low pitched beeps for bad results and high pitched beeps for good results: if( goodResult == true ) { Beep(1000, 40); } else { Beep(2000, 20); } This works okay on my Vista laptop, but I've...

Play a beep in C, MacOS

How can my program play a beep? Also Is it possible to play a sound with frequency and duration? ...

alert beep sound new user comes

hello... i am doing private chat concept. i want to alert beep sound when new user comes in. how to do? i am displaying every thing when new user comes in user details will comes at admin side. but at the same i want to alert beep sound when new user comes. ...