300 bytes:
REBOL [Title: "World's Smallest Sound Player?"]
port: open sound://
while [files: request-file/keep] [
foreach file files [
either error? try [snd: load file][
alert reform ["Cannot load sound:" file]
][
snd/volume: 0.8
insert port snd
]
]
]
close port
--
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the
subject, without the quotes.
