Error #2044: Unhandled IOErrorEvent:. text=Error #2032: Stream Error. at MP3_Player_fla::MainTimeline/frame1()
Hello,
I know this question has been asked before but I am not getting any results from the previous answers. My code is very simple, not even complete yet. This is actually a tutorial I am following for class. My instructor sent us mp3 files to download and I keep getting this error:
Error #2044: Unhandled IOErrorEvent:. text=Error #2032: Stream Error. at MP3_Player_fla::MainTimeline/frame1().
I have already read that one solution someone had was to change text behavior from multiline to single line and that fixed it. Well in static text, the behaviors are set to multiline and greyed out. My coding is below, someone please help me!!!
import flash.net.URLRequest;
import flash.media.Sound;
import flash.events.Event;
var audioLoader:URLRequest = new URLRequest ("carmina");
var s:Sound = new Sound();
s.load(audioLoader);
s.addEventListener(Event.COMPLETE, songReady);
function songReady(evt:Event):void {
trace("song ready");
}
