Noisemaker waits ... minutes, plays random 1-3 second notes for ... minutes.
Fearful of the new terrorist act, I still post this solution to the request.
Download and install AutoHotKey from
www.autohotkey.com. Save the script as Noisemaker.ahk and doubleclick to run.
Skrommel
;Noisemaker.ahk
; Waits ... minutes, plays random 1-3 second notes for ... minutes
;Skrommel @2005
#Persistent
IN:
InputBox,in,Noise,Start playing in ... minutes:
If in<1
Goto,IN
FOR:
InputBox,for,Noise,Play for ... minutes:
If for<1
Goto,FOR
in*=60000
for*=60000
SetTimer,START,%in%
Return
START:
SetTimer,START,Off
SetTimer,STOP,%for%
Loop
{
Random,duration,1000,3000
Random,frequency,200,10000
SoundBeep,%frequency%,%duration%
}
STOP:
SetTimer,STOP,Off
ExitApp