Hello,
I´m having troubles with reading a wav file through swfkit, because my wav file is in a http path.
Previously I had the code like this:
m.deviceType = "waveaudio";
m.fileName = ``c:\\audiofiles\test.wav'';
m.command = "open";
m.command = ``play'';
and it worked
but now I want something like:
m.deviceType = "waveaudio";
m.fileName = ``
http://server.../file=x.wav'';
m.command = "open";
m.command = ``play'';
Do you know how can I resolve this problem?
Thanks