Jazz-Soft.net
We make it sound!
Home » Documentation » Jazz-Plugin » Reference » MidiInList()

MidiInList()

Function

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().

Example

var list=Jazz.MidiInList();
var str="MIDI input devices found:\n\n"
for(i in list) str+=list[i]+"\n";
alert(str);

See also