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

MidiOutList()

Function

MidiOutList () - get a list of connected MIDI output devices.

Returns a string array with the names of MIDI output devices: software synths or external MIDI instruments connected to the computer.

Device name can be later used as input parameter for MidiOutOpen().

Example

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

See also