Sending MIDI PGM CHANGE +1 or -1 with mouse wheel or keystrokes ?

geekeyz

2016-04-26 12:22:43

Hi,

Bome Midi Translator seems amazing, but I can't manage to send a MIDI PGM CHANGE +1 or -1 message in "outgoing" tab... I can only send a specific value for PGM CHANGE... Is there any way to do it ?

Another thing, is it possible to send mouse wheel messages in "incoming" tab ? I'd like to change presets on my VST instruments using the mouse wheel...

If it's not possible, how can i send keystrokes to MIDI PGM CHANGE +1 and-1 ?

Thanks a lot ! :)

DvlsAdvct

2016-04-27 15:21:54

Hi geekeyz

For the second question, no there isn't a way to use the Mouse as an incoming message.

For the first, what is your incoming message for the PGM change?

Jared

geekeyz

2016-04-27 15:33:11

Thanks for your answer.

I tried with a keystroke.

geekeyz

2016-05-06 13:04:19

Anyone could help me ?

Thanks ! :)

DvlsAdvct

2016-05-09 15:32:27

Oh sorry geekeyz

I thought you had figured it out. Misread your post, my bad

You need two translators, one for moving the PGM up and one for moving it down. I'm going to use U and I for the example below. We are going to use the global variable g0 to store the current value.

Code: Select all

Translator 1: Program Up
Incoming: Keystroke
Down Event
U
Rules: g0=g0+1
if g0>127 then g0=127
Outgoing: C0 g0

Translator 2: Program Down
Incoming: Keystroke
Down Event
I
Rules: g0=g0-1
if g0<0 then g0=0
Outgoing C0 g0
Hope that makes sense
Jared

geekeyz

2016-05-09 16:35:01

Thanks a lot that works perfectly !