View Single Post
  #9 (permalink)  
Old 05-10-2008, 04:49 PM
pmu5757's Avatar
pmu5757 pmu5757 is offline
Knows the basics
 
Join Date: Sep 2007
Location: Metz (France)
Posts: 53
Default Hekkus lib

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.
__________________
Pascal
Reply With Quote