Is there any way to play a speech file (packaged in speech.vox) as an audio clip rather than as speech?
For example, to play a speech file as speech, I'd use cEgo.Say("&1234 I speak therefore I am."), which then plays EGO1234.ogg (which was packaged into speech.vox at compile time).
But is it possible to play EGO1234.ogg directly as an audio clip, i.e. to access that particular sound file within speech.vox? Right now, my workaround is to import the speech file as an audio clip (e.g. aEGO1234) and then play it; but that's clunky for several reasons (e.g. duplicates data, not extensible since you have to import each sound manually in the editor, etc).
By the way, my goal in all this is to play a speech file in a non-blocking manner. (I'm writing my own version of SayBackground that includes sound.)
Thanks,
Greg