Desativar Pitch Bend

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

on init

declare ui_switch $Pitch


set_text ($Pitch,"Desativar Pitch Bend")
set_control_par(get_ui_id($Pitch),$CONTROL_PAR_WIDTH,110)
make_persistent($Pitch)
move_control_px ($Pitch,100,12)
end on

on midi_in
if (($MIDI_COMMAND = $MIDI_COMMAND_PITCH_BEND ) and $Pitch = 1)
ignore_midi
end if
end on

You might also like