Question
Error #2044: Unhandled IOErrorEvent:. text=Error #2032: Stream Error.
Hello,
I'm trying to include some text to speech function into my flash, the code above works perfectly fine when i open my class in AS3, however it fails when I uses adobe air to run my class:
var channel:SoundChannel = new SoundChannel();
var snd:Sound = new Sound();
var req:URLRequest = new URLRequest("http://translate.google.com/translate_tts?tl=en&q=hello");
snd.load(req);
channel =snd.play();
