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. ...
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. ...
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...
I want to my web page to beep whenever a user exceeds the maximum character limit of my textarea. ...
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...
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...
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...
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...
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...
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). ...
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...
What's the PHP verson of this python code? import winsound winsound.Beep(537, 2000) ...
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...
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? ...
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...
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? ...
Is there an example Hello Sound project for Android that will show how to create beep sounds of a variable tone and duration? ...
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... ...
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...
How can my program play a beep? Also Is it possible to play a sound with frequency and duration? ...
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. ...