Direct access to an objects memory
Posted: Wed Apr 04, 2007 2:16 pm
Newbie question:
Is it possible to do something akin to the following?
I know I can write the entire file back to disk and then read it back in again, but that will *not* solve my problem.
I know I can do this for images, but I need to manipulate sounds.
Thanks for the help...
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...