Having the following code:
var loadingSoundTitle:String;
var loadingSound:Sound = new Sound();
function loadFile(str:String)
{
loadingSound = new Sound(); //(1)
loadingSoundTitle = str;
try
{
loadingSound.load(new URLRequest(loadingSoundTitle));
}
catch(err:Error)
{
trace(err.message);
}
}
Doesn't work if the line marked with (1) is there, however if I comment out this line, its able to load one single file, before it stops working.
Using ActionScript 3.0 under CS5
Edit: I'm perfectly new to flash!
loadingSound.addEventListener(Event.COMPLETE, function(e:Event)
{
list.addItem({label:loadingSoundTitle, data:loadingSound});
process.value = 0; //for the nice little processbar I got :)
});