View Single Post
Old 11-28-2020, 02:34 PM   #11843
spkr4thdd
Human being with feelings
 
Join Date: Apr 2020
Location: Scotland
Posts: 155
Default

Thanks for the response, great to have that quick reference. I do have a couple of questions while I dive in...

Quote:
Originally Posted by Funkybot View Post
2. TrackTouch (widgets/actions) and/or FaderTouch (modifiers) are gone.

Remove any "touch" messages (e.g. anything looks like this) from any existing zone....
Code:
	TrackTouch+DisplayLower| 	TrackVolumeDisplay
	FaderTouch|  			TrackTouch
Remove "FaderTouch" from your surface.mst files and add a new line to your fader widgets. So this (old)...
Code:
Widget FaderTouch1
	Press 90 68 7f 90 68 00
WidgetEnd

Widget Fader1
	Fader14Bit e0 7f 7f
	FB_Fader14Bit e0 7f 7f
WidgetEnd
Gets consolidated down to this (new)...
Code:
Widget Fader1
	Fader14Bit e0 7f 7f
	FB_Fader14Bit e0 7f 7f
	Touch 90 68 7f 90 68 00
WidgetEnd
OK, I get that, but now how do I tell CSI to display the volume level in the corresponding lower display when I touch a fader?

I used to use

Code:
	TrackTouch+DisplayLower| 		TrackVolumeDisplay
Is there a new way to do that?

Quote:
Originally Posted by Funkybot View Post
4. FXMenu and Send zones have new syntax...

Replace your old Send and FXMenu zoness with this (new)...
Code:
Zone "Send"
    SendNavigator
    DisplayUpper|               TrackSendNameDisplay
    DisplayLower|               TrackSendVolumeDisplay
    Mute|                       TrackSendMute
    Fader|                      TrackSendVolume
ZoneEnd 

Zone "FXMenu"
    FXMenuNavigator
    DisplayUpper|               FXMenuNameDisplay
    DisplayLower|               NoAction
    Rotary|                     NoAction
    RotaryPush|                 GoFXSlot
ZoneEnd
I think I've got the FX. I'll play around to make sure.

Quote:
Originally Posted by Funkybot View Post
5. Toggle and Press modifiers are gone. Replaced with...

If you were using toggle and/or press modifiers in previous builds to make buttons do things, they no longer exist. Press just works. Toggles have changed.

Press (old)...
Code:
Press+SomeButton     SomeAction
New...
Code:
SomeButton     SomeAction
Toggle (old)...
Code:
Toggle+SomeButton      SomeAction
Toggle (new) (same syntax as stepped parameters, which is what they basically are)....
Code:
SomeButton      SomeAction [ 0.0 1.0 ]
Is this the case for the built in ones like 'MapSelectedTrackFX' etc?
__________________
Slainté, Grae
Mac mini M2 Pro [MacOS 13.5.2] | Reaper 7.11(ARM) | CSI (Exp) & DBM4R (Latest) | Behringer X-Touch (1.21)
spkr4thdd is offline   Reply With Quote