home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1999 February
/
PCWorld_1999-02_cd.bin
/
software
/
Zkuste
/
WinBat98
/
WAV.MN_
< prev
next >
Wrap
Text File
|
1995-08-17
|
369b
|
14 lines
Play this Wave File
filename = CurrentFile()
PlayWaveForm( filename, 1)
Play all selected Wave File(s)
waves=FileItemize("")
count=ItemCount(waves,@tab)
for i=1 to count
wf=ItemExtract(i,waves,@tab)
wfe=strupper(FileExtension(wf))
if wfe!="WAV" then continue
PlayWaveForm(wf,0)
next