OnConnectMidiOut ( func ) or OnConnectMidiOut ( ) - set or remove handler for MIDI-Out Port Connect event.
func must be a function with a single parameter which is the name of the newly-connected port.
Monitoring MIDI connections may be a resource-consuming operation. Don't use it unless you really need it.
Jazz.OnConnectMidiOut(function(name){ alert(name);}); // set handler Jazz.OnConnectMidiOut(); // remove handler