Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World's smallest sound player?

 [1/1] from: carl::rebol::com at: 11-May-2001 12:07


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