How to send mod wheel message out?
If [bendout] is for pitch bend out, what is for the mod wheel out?
mod wheel is usually control change number 1,
so either ctlout or midiout if You learn the midi specs...

thank you. I also found [midiformat] to address some things too.
[ctlout] works brilliantly, thanks Source Audio. I couldn't get [midiformat] to address it in the way I wanted to. Yippy!
You could try also midiout.
It sends all sorts of midi messages, and if You are into midi it is usefull to
learn a bit about messages.
to send modwheel on midi channel 1 one would create message
176 1 $1 and connect it between fader 0-127 and midiout.
midi channel 2 would be 177 1 $1 etc
so first number is status byte telling what kind of midi message is being sent
and on which channel, second is in case of controller the CC# number, and
last is the value.
