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().
var list=Jazz.MidiOutList(); var str="MIDI Out devices found:\n\n" for(i in list) str+=list[i]+"\n"; alert(str);