Buttons as drawbars

Hello there,

Maybe someone could help me.

I would like to use buttons ( like on the nord electro) to control the drawbars of my Hammond b3x plugin up and down. Is there a wat to do this. Like 8 pushes drawbar full out, 4 pushes half out.

I appreciate the help.

Thanks

Scripting is your friend :slight_smile:

I have a yamaha moxf. In DAW mode the buttons send note on/off messages to a separate midi output. Is it possible with these and some scripting?

Something like this? Useful scripts and Scriptlets - #12 by npudar

One click progresses with another value?

1 Like

Could be the thing but I don’t know how to set it up.

I tried it and grouped the button with a fader but it only goes max or min.

I would like to have steps of 8.

One button to increase and one to decrease on a same fader.

Maybe you can help me

Hello there Pianopaul,

Could you maybe help me with this?

Making no progress.

Thanks Greetings Ludo

You get what you pay for :wink:

1 Like
Var
   B32 : Widget
   STB1 : Widget
   STB2 : Widget
   v_val : double

// Called when a single widget value has changed
On WidgetValueChanged(newValue : double) from STB1
 if newValue == 1.0 then
 v_val = GetWidgetValue(B32)
  if v_val < 1.0 then
    B32.SetWidgetValue(v_val + 1.0/8)
  end
 end 
End

// Called when a single widget value has changed
On WidgetValueChanged(newValue : double) from STB2
 if newValue == 1.0 then
 v_val = GetWidgetValue(B32)
  if v_val > 0.0 then
    B32.SetWidgetValue(v_val - 1.0/8)
  end
 end 
End

1 Like

Hello Pianopaul

OMG thank u you so much!

Going to try it asap.

Thanks :folded_hands:t3: