quote:
Original post by Chaoslab
Well I don''t believe any hack is official!
;-)
hay that also meens you can apply algorythms to them.
Nice! so this code:
import sun.audio.*;
Variables
byte play_snd_data[]; remember to fill it with something!
AudioData snd_audio;
AudioDataStream snd_stream;
to play
snd_audio = new AudioData(play_snd_data);
snd_stream = new AudioDataStream(snd_audio);
AudioPlayer.player.start(snd_stream);
to stop
AudioPlayer.player.stop(snd_stream);
will enable me to play .wav files,and I could add a loop
I just got clearence from the sound and music guy to use
.wav files. I am assuming I will be able to play multiple
tracks simultaneously if I code it correctly?
Thanks All!