Hi Dan,
Given n sliders with values S0,S1,S2,...,Sn, and buttons with values B1, B2,...,Bn, I would like to send the following sysex message (CS = Check sum):
F0 41 10 42 12 40 41 51 00 42 S0 S1 S2 ... Sn B0 B1 ... Bn CS F7
Roland has several instruments where sysex adresses contains an #, and this is the only way to write those adresses (through a lower address).
One powerfull and flexible way to implement this is to instantiate a math interface in mididesigner where it's possible to perform left shifts (<<) and logical OR (||) operations. Each control can have an option to pass it's value to instantiated math interfaces. The math interface passes the sysex string on to MIDI.
The math interface can be made very powerful by including if statements as well.
Regards,
Rollo