I use a Pioneer SX2 and have my Play_Pause mapped to the effect BreakStart. Here's the script:
play ? effect_active "BrakeStart" : play
Many times the break setting (slider 1) changes randomly and I don't like the length.
I want the effect_slider 1, which is length to be set to "0.60 s". How would I add that to the script?
play ? effect_active "BrakeStart" : play
Many times the break setting (slider 1) changes randomly and I don't like the length.
I want the effect_slider 1, which is length to be set to "0.60 s". How would I add that to the script?
Inviato Mon 15 Aug 16 @ 12:36 am
Update: the length should be 24%. So somehow the string should include:
effect_slider 1 24%
effect_slider 1 24%
Inviato Mon 15 Aug 16 @ 1:32 am
I got it.
play ? effect_active "BrakeStart" & effect_slider 1 0.24 s : play
So if anyone is interested in setting the Play button to the break effect, add this string to: Play_Pause.
You could change the length if you want, but this is the length (in my opinion) to a 1200 break.
play ? effect_active "BrakeStart" & effect_slider 1 0.24 s : play
So if anyone is interested in setting the Play button to the break effect, add this string to: Play_Pause.
You could change the length if you want, but this is the length (in my opinion) to a 1200 break.
Inviato Mon 15 Aug 16 @ 2:03 am