Updated 2009-09-21 13:21:51 by LVwikignome

Loads the snack package (without the Tk graphics) so your application can play sounds.

Example:
 package require sound
 proc        playwav {myWavFile}  {
        snack::sound s -file $myWavFile
        s play -block 1
 }

 playwav c:/path/to/wavfile.wav

NJG 2006-06-28 But if you want to enjoy what you hear you should drop the "-block 1" (whatever it means).