home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2002 May
/
PCWorld_2002-05_cd.bin
/
Software
/
TemaCD
/
activetcltk
/
ActiveTcl8.3.4.1-8.win32-ix86.exe
/
ActiveTcl8.3.4.1-win32-ix86
/
demos
/
Snack
/
play.tcl
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
2001-10-22
|
373 b
|
19 lines
#!/bin/sh
# the next line restarts using tclsh \
exec tclsh8.3 "$0" "$@"
package require -exact sound 2.1
# Try to load optional file format handlers
catch { package require snacksphere }
catch { package require snackogg }
if {[llength $argv] == 0} {
puts {Usage: play.tcl file}
exit
} else {
set file [lindex $argv 0]
}
snack::sound s -file $file
s play -block 1