Dont despair Firle, what you need is to form a small team, as even a motivated individual can do so much. You only need to be 2 (3-4 is better, but above is not necessary) and you will see how faster and better the progress is.

I have a problem with Omega 3DSound, can you tell me why when I change the filename of an existing sound item, it works, but when I create a new one, it crashes?

like:

Code:
  
Sound3D.SoundList.Items[0].SetFileName('BoA - MoveCavalry.wav');
I change an existing sound item in the list by one of mine (I want to load my sounds from a file)

but if I create a new one like:

Code:
  
var SLI : TSoundListItem;
...
  SLI := TSoundListItem.Create(Sound3D.SoundList);
  SLI.SetFileName('BoA - MoveCavalry.wav');
  SLI.Play;
"Error downloading sound"



[/code]