home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1996 February
/
PCWK0296.iso
/
sharewar
/
win31x
/
program
/
liberty
/
examples.shr
/
PLAYER.BAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
BASIC Source File
|
1995-06-16
|
256 b
|
17 lines
'Simple wave file player
'You must have sound support installed to
'use this player!
[loop]
filedialog "Pick a *.WAV file", "*.wav", w$
if w$ = "" then [quit]
playwave w$, asynch
goto [loop]
[quit]
end