Quick Sign In:  

Forum: General Discussion

Topic: Script needed for pitch range position
HI all ,
Im asking if any one can help me with the script for a custom button to apply the pitch range percentage to the non playing deck. I have never attempted script before so i stumbled in the dark multiple times the last one being:
get_var:pitch_range%?param_add
 

geposted Sat 15 Jul 23 @ 4:21 am
??
plz note this has nothing to do with sync to beat its the percentage i am experimenting with
 

geposted Mon 17 Jul 23 @ 4:25 pm
locoDogPRO InfinityModeratorMember since 2013
pitch_range is system wide, not per deck.
the script description for pitch_range should tell you all you need to know.
 

geposted Mon 17 Jul 23 @ 4:55 pm
pitch_range 12% sets a fixed range (12%)
pitch_range '4,8,12,16,50,100' +1 scrolls through the list of the provided ranges. In this example, 4%, 8%, 12%, 16%, 50% and 100%. When the script reaches the last value (e.g. 100%) it goes back to the first.
You can also use 2 buttons to scroll back and forth. On the second button just use -1 instead:
pitch_range '4,8,12,16,50,100' -1
Finally on a controller button you could possibly combine both like this:
shift ? pitch_range '4,8,12,16,50,100' -1 : pitch_range '4,8,12,16,50,100' +1
 

geposted Mon 17 Jul 23 @ 8:04 pm