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

OnDisconnectMidiOut()

Function

OnDisconnectMidiOut ( func ) or OnDisconnectMidiOut ( ) - set or remove handler for MIDI-Out Port Disconnect event.

func must be a function with a single parameter which is the name of the disconnected port.

Monitoring MIDI connections may be a resource-consuming operation. Don't use it unless you really need it.

Example

Jazz.OnDisconnectMidiOut(function(name){ alert(name);});  // set handler
Jazz.OnDisconnectMidiOut();                               // remove handler

See also