Hey peeps,
Is there any way to load a sound from a FileStream class?
var fileObj:File = new File(“C:/Users/UserName/Music/Song.mp3” );
var fileStrm:FileStream = new FileStream();
fileStrm.open(fileObj,FileMode.READ);
Is there a way to pass “Song.mp3” into a new Sound variable?
Thanks for any help!