Hi,
I would solve this by using Input Transformer. In fact, what you need is to send a MIDI Note On, when the MIDI CC Vauke comes. The MIDI Note Nr. = the MIDI CC Value.
So I would make a Transformer, something like (sorry, it’s not exact, I’m not infront the Cubase, now):
{ If > Message > Is > Controller > And
Value 1 (MIDI CC Number) > Equal > the CC number you will send And
Value 2 (MIDI CC Value) > Is in Range > 0 - 127 } (This line is not necessary, but it’s a cleaner “code” then.)
Do
message > Note On
Value 1 (Pitch) > Equal > Value 2 (MIDI CC Value)
Transform.
Now the MIDI CC Value should be transformed to the MIDI Notes Nr.
To make it more robust, and stable, you should send MIDI Notes Off (in ideal world the latest MIDI Note Nr.), before you send the MIDI Note On. This is not so simple, so as a workaround, I would try to send All Notes Off (if Transformer can send this). So this All Notes Off would be the 1st Module, and the 2nd Module would be the one described abow.
Do you need a screenshot?