[REBOL] Layout to sound
From: ljurado:bariloche:ar at: 2-Aug-2003 4:59
This is my embedded double-beep: layout [origin 0x0 btn 21x83 btn 21x111] Can you get anothers sounds ? REBOL [] s: make object! [ type: 'sound rate: 22050 channels: 2 bits: 16 volume: 0.5 data: #{}] s/data: to-binary to-image layout [origin 0x0 btn 21x83 btn 21x111] play: func [s] [sp: open sound:// insert sp s wait sp close sp] play s -------- Luis