MidiInList () - get a list of all MIDI inputs.
Returns a string array with the names of MIDI input devices connected to the computer.
Device name can be later used as parameter for MidiInOpen().
var list=Jazz.MidiInList(); var str="MIDI input devices found:\n\n" for(i in list) str+=list[i]+"\n"; alert(str);