View Single Post
Old 01-10-2021, 07:58 PM   #497
Funkybot
Human being with feelings
 
Funkybot's Avatar
 
Join Date: Jul 2007
Location: New Joisey
Posts: 6,027
Default

Hasn't "GoZone Sends" been depreciated? If you want to use a button to activate the sends try this...

Code:
Zone Home
        OnFXFocus               MapFocusedFXToWidgets
        IncludedZones
            "Channel"
            "Buttons"
        IncludedZonesEnd
ZoneEnd

Zone "Buttons" 
        ButtonA6        MapSelectedTrackSendsToWidgets
        ButtonA7        GoZone "Home" 
ZoneEnd

Zone "Sends"
        SendNavigator
        RotaryD|        TrackSendVolume                                                 [ (0.001,0.001,0.001,0.002,0.002,0.002,0.003,0.003,0.003,0.006,0.007) ]
        RotaryPushD|    TrackSendMute                                                   { 90 255 0 90 255 0 }
ZoneEnd
...so we got rid of the "OnTrackSelection MapSelectedSendsToWidgets" and replaced the GoZone with that same CSI action on ButtonA6.

Remember, you'll have to select the track after you map the sends by pressing A6.

Now, if you always want RotaryD mapped to sends, you could try this...
Code:
Zone Home
        OnFXFocus               MapFocusedFXToWidgets
        OnTrackSelection        MapSelectedTrackSendsToWidgets
        IncludedZones
            "Channel"
            "Buttons"
        IncludedZonesEnd
ZoneEnd

Zone "Buttons" 
        ButtonA6        NoAction
        ButtonA7        GoZone "Home" 
ZoneEnd

Zone "Sends"
        SendNavigator
        RotaryD|        TrackSendVolume                                                 [ (0.001,0.001,0.001,0.002,0.002,0.002,0.003,0.003,0.003,0.006,0.007) ]
        RotaryPushD|    TrackSendMute                                                   { 90 255 0 90 255 0 }
ZoneEnd
...that frees up ButtonA6. But if you do this, get rid of those RotaryD1 NoAction commands in the buttons zone.
Funkybot is online now   Reply With Quote