From what I had read of the Java MIDI package documentation,
I guess I didn't understand that noteOff is as important as it is.
There are about 3 noteOff methods that I've found so far:
allNotesOff() // turns off all the notes
noteOff(int notenumber) // turns off the specific note.
noteOff(int notenumber, int velocity) // what is velocity for when you're
// turning the note off?
wow, thanks for all that info
I haven't read the MIDI spec.
This tutorial, I think I mean't it to be about
of how to generate simple tones, not playing
music.
Sound is always the hardest thing for me to do on any platform.
So far the only 2 platforms I can do simple sound effects with are:
16bit DOS assembly
Java
thanks again for all that info,
maybe I'll go further with MIDI.
- Mike H