Date: Fri, 13 Aug 2010 18:16:04 -0400
Reply-To: Nat Wooding <nathani@VERIZON.NET>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Nat Wooding <nathani@VERIZON.NET>
Subject: Beethovens Fifth from Call Sound
Content-Type: text/plain; charset="US-ASCII"
Folks
Some years ago, I posted a note on using Call Sound to issue audible flags
during or at the end of long job runs. For those who might be interested,
the following code works nicely in the Windows environment:
data _null_;
do f = 200 to 2500 by 250;
d + 25;
call sound( f , d );
end;
run;
In now long-lost off line correspondence, someone sent me the code for the
opening notes of Beethoven's Fifth symphony. I would like to cite this
person properly in an upcoming NESUG presentation so if you are the guilty
party, please let me know.
Thanks
Nat Wooding
Hallsboro Systems Consulting
Midlothian, Va.
|