View Single Post
  #1 (permalink)  
Old 03-13-2009, 11:48 AM
rneves rneves is offline
Junior Member
 
Join Date: Mar 2009
Posts: 3
Unhappy Reading a wav file from a http:\\ path

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
Reply With Quote