View Single Post
Old 05-18-2019, 09:34 AM   #2933
Geoff Waddington
Human being with feelings
 
Geoff Waddington's Avatar
 
Join Date: Mar 2009
Location: Dartmouth, Nova Scotia
Posts: 11,184
Default

Have to add constraint here to keep things sane.

Code:
Zone Sends|1-4
	RotaryPush| Cycle CycleTrackSends 4
	CycleTrackSends+Rotary| TrackSendVolume |
	CycleTrackSends+Shift+Rotary| TrackSendPan |
...
If you add a Modified Cycle behaviour (Shift in this case) the Modified Action counts must be the same as the NoModifiers Action count (4 in this case).

Put another way you can't do the following, there are 3 DoSomethings and only 2 ShiftedDoSomethings, it makes no sense, what does the current Cycle index mean in this case ?


Code:
Zone SomeZone
	RotaryPush Cycle CycleStuff 3 -- or should it be 2 ? 

        CycleStuff+Rotary1 DoSomething1
        CycleStuff+Rotary2 DoSomething2
        CycleStuff+Rotary3 DoSomething3

        CycleStuff+Shift+Rotary1 DoShiftedSomething1
        CycleStuff+Shift+Rotary2 DoShiftedSomething2
__________________
To install you need the CSI Software and Support Files
For installation instructions and documentation see the Wiki
Donate -- via PayPal to waddingtongeoff@gmail.com
Geoff Waddington is offline   Reply With Quote