Support |
> Example: pushing button 1 on my FCB,> - select track 3> - on track 1 go to loop 2> - mute track 7, 8> - unmute track 6>> A related question is:> since track 7 and 8 have different 8th per cycle settings (let's say 7> and 8, respectively) how can I 'mute' those tracks at the same time> according to my Master Track 8th per cycle quantization (that detects> the basic time signature of my song) ?I'm not able to test this at the moment, but the script would look something like this.I'm assuing "master track" means the master track for Track Sync Mode. If you'reusing SyncMode=Out it will be a little different. If this doesn't work let's take thediscussion over to the Circular Labs forum.Jeff
!name Magic Button# switch to loop 2 on track 1for 1Loop2next# find the subCyles value in use by the master track# this is what used to be called 8thsPerCycleVariable masterSubCyclesfor *if trackNumber == trackSyncMasterset masterSubCycles subCyclesendifnext# Mute tracks 7 and 8 using the subcycles of the master trackfor 7,8Variable saveSubCycles subCyclesset subCycles masterSubCyclesMuteOnset subCycles saveSubCyclesnext# unmute track 6for 6MuteOffnext# leave track 3 selectedTrack3