Quick Sign In:  

Forum: Old versions

Topic: Keep Same Loop Size On Cloned Deck

Dieses Thema ist veraltet und kann veraltete oder falsche Informationen enthalten.

A.eXe 1PRO InfinityMember since 2011
Hello,
I'm trying to clone deck 1 to deck 2 if the crossfader is less than 50% and load a designated scratch sample. If the crossfader is greater than 50%, than just load the desiginated scratch sample on deck 1. It all seems to work except if deck 1 is in loop mode & deck 2 is cloned it goes out of loop mode. Is there a way to have deck 2 keep the SAME loop size as deck 1 when it is cloned?

After trying different commands and combinations I stripped the script back down to this.............

CROSSFADER & PARAM_SMALLER 50 ? DECK 1 CLONE_DECK 2 & CROSSFADER 100% & DECK 1 LOAD "ANY SCRATCH SAMPLE.MP3" & DECK 1 GOTO_CUE 1 & DECK 1 SYNC : DECK 1 LOAD "ANY SCRATCH SAMPLE.MP3" & DECK 1 GOTO_CUE 1 & DECK LEFT SYNC

Any Ideas??
 

geposted Wed 06 Feb 13 @ 8:20 am
I can't test it right now, but pretty much it should be:

crossfader & param_smaller 50% ? deck 1 clone_deck 2 & deck 1 loop 32 ? deck 2 loop 32 : deck 1 loop 16 ? deck 2 loop 16 : deck 1 loop 8 ? deck 2 loop 8 : deck 1 loop 4 ? deck 2 loop 4 : deck 1 loop 2 ? deck 2 loop 2 : deck 1 loop 1 ? deck 1 loop 1 : nothing & crossfader 100% & deck 1 load "sample.mp3" & deck 1 goto_cue 1 & deck 1 sync : deck 1 load "sample.mp3" & deck 1 goto_cue 1 & deck 1 sync


It might need a little debugging for it to work, but pretty much that's how it should be done.

PS: You may want to query for other loop sizes as well (64 beats or half/quarter of beats)


PS2:
Personally I would use a button to do all this stuff, and not the crossfader. The crossfader will repeat all of the above commands EACH single time it moves. In other words, moving crossfader from 100% for instance until it reaches 50% will repeat the "deck 1 load "sample.mp3" & deck 1 goto_cue 1 & deck 1 sync" part of the above code SEVERAL times
For a button you can still query the position of the crossfader and perform the actions.
 

geposted Thu 07 Feb 13 @ 7:51 am
A.eXe 1PRO InfinityMember since 2011
Thanks!!! That worked out just how I wanted
 

geposted Fri 08 Feb 13 @ 11:53 am


(Alte Themen und Foren werden automatisch geschlossen)