home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Windows 95 Secrets (4th Edition)
/
Windows95Secrets4thEdition.iso
/
utility
/
managemt
/
winbatch
/
wav.mn_
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-08-17
|
369 b
|
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