While working with the Sound object in AS3, I recieved the following error.
Error #2037: Functions called in incorrect sequence, or earlier call was unsuccessful.
I was trying to reuse my Sound object by loading a different external mp3 into it, which I used to be able to do no prob in AS2. We’ll like many things I have discovered with AS3, things have changed. After doing a bit of research I found the answer here on TroyWorks blog. Basically, Sound objects now appear to be single use items, which means you have to create one for each sound you want to use, or recreate it if you want to reuse it, so in my case I needed to new my Sound object inside your function, instead of trying to do it in my class constructor and trying to reuse it. Hope this helps.