0
votes

I have this error in my output screen, any idea what it means?

Error #2044: Unhandled IOErrorEvent:. text=Error #2032: Stream Error. at soundboard_fla::MainTimeline/frame40() at flash.display::MovieClip/gotoAndStop() at soundboard_fla::MainTimeline/onBirdsClick()

2
What's on frame 40 of soundboard.fla? Or even what is it doing? - Kodiak
add an eventlistener to the loader object for the IOErrorEvent event and it will go away - The_asMan

2 Answers

2
votes

Are you dynamically pulling in audio files or something like that?

I think that error means that you tried to load in an external file but that the URL is wrong, and that no file was found at that location. Double-check to make sure that any URLs you are pulling in are accurate!

0
votes

I have run into this issue twice now. I am using PHP to pass XML data to a loader object. Viewing of the PHP page and XML didn't lead me to the answer right away. Everything looked fine. XML was properly formatted. Code APPEARED to be correct and, as stated, produced the correct XML. What I ended up discovering is that I was cleaning up some variables in PHP at the end of my process, manual garbage collection. A variable I had stopped using was still in the clean up process. After removing the clean up process for that nonexistent variable, the error disappeared. Long story short, don't delete variables you never declared.