When I empty my recycle bin, I get a small computer beep which doesn't come through my speakers, it comes directly out of my computer box/case. Is there a way of making the same (or simliar beep) sound with MacroScheduler? ...If I use the PlayWav command the sound will come out of my speakers. I'm trying to get a beeping sound directly out of my computer.
I checked under Control Panel/Sounds, and where it says "empty recycle bin" nothing is listed there. So I guess the computerized "beep" that I am hearing is the Windows2000 default sound. Does anybody know how to make the same sound with MacroScheduler?
Thanks so much,
Kwhiz
computer beep?
Moderators: JRL, Dorian (MJT support)
Example taken from the Macro Schedulers help file, you can find it by searching for LibFunc
Use the system API Beep function to play sounds:
Let>k=200
Repeat>k
LibFunc>kernel32,Beep,r,k,50
Let>k=k+10
Until>k,1000
You can change the pitch and length of the beep by changing the Until> and Let>K value
Have a great day,
Rain
Use the system API Beep function to play sounds:
Let>k=200
Repeat>k
LibFunc>kernel32,Beep,r,k,50
Let>k=k+10
Until>k,1000
You can change the pitch and length of the beep by changing the Until> and Let>K value
Have a great day,
Rain