Hi, I've got a question on Promidi.
How do you handle multiple midi channel?
I need to be able to send midi notes on two ( or more ) midi channels, is that possible?
Does it work with the plug method?
//1 channel
midiIO.plug(this,"Synth1",0,0);
//2 channel
midiIO.plug(this,"Synth2",0,1);
//etc...
The problem is that I want to be able to select my midi devices throught a menu.
So people can use it with their favorite music software using what ever they use for virtual midi, or just with the build in midi-synth.
I've made this by first getting the list of midi outputs, put them in String Array. Made my thing for the visual menu. And then use the value of the array in midiIO.getMidiOut(myArryValue,0);
That doesn't work for the moment but I will find out why.
So can I change the midi device in the plug method dynamically? You say in the documentation that it work with incoming data, does that mean it's doesn't work with Output?
ps: By the way it doesn't seem to work on a mac (intel, 10.4.11) the midipro_mac with mandolane included. Don't know why, but I'm mainly using a pc anyway.