Hello Louis,
Thank you for your answer.
You say that I must add a sound object and a channel1 object per everysound you want to load and manipulate from Basic4ppc.
In my app, I have to play 99 different wav files (1.wav 2.wav ... up to 99.wav)
I've done a sub to do that :
Code:
sub tell(num)
Sound (".\sons\" & num & ".wav")
Sleep (1200)
End Sub
How could I do with your lib to do the same without having 99 code parts like :
speaker.new1
sound1.new1
channel1.new1
Another question : is it possible with your lib to play mp3 files ?
Thank you.