ignore_event()

Drops the given event and thus prevents the supplied event to be further processed by the sampler. You can use this function i.e. to filter out MIDI note on and MIDI note off events, before they are causing new notes to be triggered.

There is also an ignore_controller() function. With NKSP the two functions are both doing the same thing though. The two exist merely due to compatibility reasons with KSP.

Function Prototype

ignore_event(??event-id??)

Arguments

Argument Name Data Type Description
??event-id?? Event ID Number or Event ID Array MIDI event(s) to be dropped.
[required]

Return Value

None.

Examples

None yet.

Passing an array of event IDs is only supported by NKSP. If you want to keep compatibility to KSP, then you should only pass a single event ID to this function.