Is it possible to do something akin to the following?
Code: Select all
open file fName for binary read
read from file fName until EOF
put it into rawData
close file fName
-- manipulate rawData here...
put rawData into Sound1
play audioClip Sound1
I know I can do this for images, but I need to manipulate sounds.
Thanks for the help...